NFO helm initial code 50/12850/1
authorVamshi Namilikonda <vamshi.namilikonda@capgemini.com>
Fri, 26 Apr 2024 13:16:11 +0000 (18:46 +0530)
committerVamshi Namilikonda <vamshi.namilikonda@capgemini.com>
Thu, 2 May 2024 10:50:32 +0000 (16:20 +0530)
commit9196760ad5a56c7e6158a9362341ccbcbb30dc30
tree4a8957726aa22091629fc0d2ee6d25c19e231a2c
parent56673b96784604d965655eda6cdb3ae0ffa43fd2
NFO helm initial code

Issue-ID: SMO-145
Change-Id: I41b1fb72571a7ed1d77eec3e356b27a2acae98cf
Signed-off-by: Vamshi Namilikonda <vamshi.namilikonda@capgemini.com>
97 files changed:
nfo/k8s/README.md [new file with mode: 0644]
nfo/k8s/apis/__init__.py [new file with mode: 0644]
nfo/k8s/apis/__pycache__/__init__.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/__init__.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/__init__.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/admin.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/admin.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/admin.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/apps.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/apps.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/apps.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/models.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/models.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/serializers.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/serializers.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/urls.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/urls.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/urls.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/views.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/views.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/apis/__pycache__/views.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/apis/admin.py [new file with mode: 0644]
nfo/k8s/apis/apps.py [new file with mode: 0644]
nfo/k8s/apis/migrations/0001_initial.py [new file with mode: 0644]
nfo/k8s/apis/migrations/0002_delete_nfomodel.py [new file with mode: 0644]
nfo/k8s/apis/migrations/__init__.py [new file with mode: 0644]
nfo/k8s/apis/migrations/__pycache__/0001_initial.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/apis/migrations/__pycache__/0001_initial.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/apis/migrations/__pycache__/0001_initial.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/apis/migrations/__pycache__/0002_delete_nfomodel.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/apis/migrations/__pycache__/0002_delete_nfomodel.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/apis/migrations/__pycache__/0002_delete_nfomodel.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/apis/migrations/__pycache__/__init__.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/apis/migrations/__pycache__/__init__.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/apis/migrations/__pycache__/__init__.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/apis/models.py [new file with mode: 0644]
nfo/k8s/apis/serializers.py [new file with mode: 0644]
nfo/k8s/apis/tests.py [new file with mode: 0644]
nfo/k8s/apis/urls.py [new file with mode: 0644]
nfo/k8s/apis/views.py [new file with mode: 0644]
nfo/k8s/config.ini [new file with mode: 0644]
nfo/k8s/db.sqlite3 [new file with mode: 0644]
nfo/k8s/helm/__init__.py [new file with mode: 0644]
nfo/k8s/helm/__pycache__/__init__.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helm/__pycache__/admin.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helm/__pycache__/apps.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helm/__pycache__/models.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helm/__pycache__/serializers.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helm/__pycache__/urls.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helm/__pycache__/views.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helm/admin.py [new file with mode: 0644]
nfo/k8s/helm/apps.py [new file with mode: 0644]
nfo/k8s/helm/migrations/0001_initial.py [new file with mode: 0644]
nfo/k8s/helm/migrations/__init__.py [new file with mode: 0644]
nfo/k8s/helm/migrations/__pycache__/0001_initial.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helm/migrations/__pycache__/__init__.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helm/models.py [new file with mode: 0644]
nfo/k8s/helm/serializers.py [new file with mode: 0644]
nfo/k8s/helm/tests.py [new file with mode: 0644]
nfo/k8s/helm/urls.py [new file with mode: 0644]
nfo/k8s/helm/views.py [new file with mode: 0644]
nfo/k8s/helmprocessor/__init__.py [new file with mode: 0644]
nfo/k8s/helmprocessor/__pycache__/__init__.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helmprocessor/__pycache__/admin.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helmprocessor/__pycache__/apps.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helmprocessor/__pycache__/models.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helmprocessor/__pycache__/serializers.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helmprocessor/__pycache__/urls.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helmprocessor/__pycache__/views.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/helmprocessor/admin.py [new file with mode: 0644]
nfo/k8s/helmprocessor/apps.py [new file with mode: 0644]
nfo/k8s/helmprocessor/models.py [new file with mode: 0644]
nfo/k8s/helmprocessor/serializers.py [new file with mode: 0644]
nfo/k8s/helmprocessor/tests.py [new file with mode: 0644]
nfo/k8s/helmprocessor/urls.py [new file with mode: 0644]
nfo/k8s/helmprocessor/views.py [new file with mode: 0644]
nfo/k8s/manage.py [new file with mode: 0644]
nfo/k8s/nfo_microservice/__init__.py [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/__init__.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/__init__.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/__init__.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/settings.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/settings.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/settings.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/urls.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/urls.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/urls.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/views.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/wsgi.cpython-310.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/wsgi.cpython-312.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/__pycache__/wsgi.cpython-38.pyc [new file with mode: 0644]
nfo/k8s/nfo_microservice/asgi.py [new file with mode: 0644]
nfo/k8s/nfo_microservice/settings.py [new file with mode: 0644]
nfo/k8s/nfo_microservice/urls.py [new file with mode: 0644]
nfo/k8s/nfo_microservice/views.py [new file with mode: 0644]
nfo/k8s/nfo_microservice/wsgi.py [new file with mode: 0644]
nfo/k8s/python_client.py [new file with mode: 0644]