From aa8fa286547589cf53a77c8c6b853d53aaec3588 Mon Sep 17 00:00:00 2001 From: ansarkar-github Date: Mon, 12 Aug 2019 17:37:04 +0530 Subject: [PATCH 1/4] Draft create --- .../.helmignore | 0 .../Chart.yaml | 2 +- .../{python-flask-docker => test-python-flask-docker}/Makefile | 0 .../templates/NOTES.txt | 0 .../templates/_helpers.tpl | 0 .../templates/deployment.yaml | 0 .../templates/ingress.yaml | 0 .../templates/ksvc.yaml | 0 .../templates/service.yaml | 0 .../values.yaml | 0 10 files changed, 1 insertion(+), 1 deletion(-) rename charts/{python-flask-docker => test-python-flask-docker}/.helmignore (100%) rename charts/{python-flask-docker => test-python-flask-docker}/Chart.yaml (69%) rename charts/{python-flask-docker => test-python-flask-docker}/Makefile (100%) rename charts/{python-flask-docker => test-python-flask-docker}/templates/NOTES.txt (100%) rename charts/{python-flask-docker => test-python-flask-docker}/templates/_helpers.tpl (100%) rename charts/{python-flask-docker => test-python-flask-docker}/templates/deployment.yaml (100%) rename charts/{python-flask-docker => test-python-flask-docker}/templates/ingress.yaml (100%) rename charts/{python-flask-docker => test-python-flask-docker}/templates/ksvc.yaml (100%) rename charts/{python-flask-docker => test-python-flask-docker}/templates/service.yaml (100%) rename charts/{python-flask-docker => test-python-flask-docker}/values.yaml (100%) diff --git a/charts/python-flask-docker/.helmignore b/charts/test-python-flask-docker/.helmignore similarity index 100% rename from charts/python-flask-docker/.helmignore rename to charts/test-python-flask-docker/.helmignore diff --git a/charts/python-flask-docker/Chart.yaml b/charts/test-python-flask-docker/Chart.yaml similarity index 69% rename from charts/python-flask-docker/Chart.yaml rename to charts/test-python-flask-docker/Chart.yaml index f444aa03..3b90b77a 100644 --- a/charts/python-flask-docker/Chart.yaml +++ b/charts/test-python-flask-docker/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v1 description: A Helm chart for Kubernetes -name: python-flask-docker +name: test-python-flask-docker version: v0.1.0 diff --git a/charts/python-flask-docker/Makefile b/charts/test-python-flask-docker/Makefile similarity index 100% rename from charts/python-flask-docker/Makefile rename to charts/test-python-flask-docker/Makefile diff --git a/charts/python-flask-docker/templates/NOTES.txt b/charts/test-python-flask-docker/templates/NOTES.txt similarity index 100% rename from charts/python-flask-docker/templates/NOTES.txt rename to charts/test-python-flask-docker/templates/NOTES.txt diff --git a/charts/python-flask-docker/templates/_helpers.tpl b/charts/test-python-flask-docker/templates/_helpers.tpl similarity index 100% rename from charts/python-flask-docker/templates/_helpers.tpl rename to charts/test-python-flask-docker/templates/_helpers.tpl diff --git a/charts/python-flask-docker/templates/deployment.yaml b/charts/test-python-flask-docker/templates/deployment.yaml similarity index 100% rename from charts/python-flask-docker/templates/deployment.yaml rename to charts/test-python-flask-docker/templates/deployment.yaml diff --git a/charts/python-flask-docker/templates/ingress.yaml b/charts/test-python-flask-docker/templates/ingress.yaml similarity index 100% rename from charts/python-flask-docker/templates/ingress.yaml rename to charts/test-python-flask-docker/templates/ingress.yaml diff --git a/charts/python-flask-docker/templates/ksvc.yaml b/charts/test-python-flask-docker/templates/ksvc.yaml similarity index 100% rename from charts/python-flask-docker/templates/ksvc.yaml rename to charts/test-python-flask-docker/templates/ksvc.yaml diff --git a/charts/python-flask-docker/templates/service.yaml b/charts/test-python-flask-docker/templates/service.yaml similarity index 100% rename from charts/python-flask-docker/templates/service.yaml rename to charts/test-python-flask-docker/templates/service.yaml diff --git a/charts/python-flask-docker/values.yaml b/charts/test-python-flask-docker/values.yaml similarity index 100% rename from charts/python-flask-docker/values.yaml rename to charts/test-python-flask-docker/values.yaml From 5d01b2fcf3958db7a2141184870fbed2899d1c12 Mon Sep 17 00:00:00 2001 From: ansarkar-github Date: Mon, 12 Aug 2019 17:49:52 +0530 Subject: [PATCH 2/4] Added hello --- app/templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/index.html b/app/templates/index.html index 63ed175b..3c167f6f 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -5,6 +5,6 @@ Index page -The hostname of the container is {{ hostname }} and its IP is {{ ip }}. +Hello.The hostname of the container is {{ hostname }} and its IP is {{ ip }}. - \ No newline at end of file + From 9447381c4f4b1c780a394159aa5bebf9350d8132 Mon Sep 17 00:00:00 2001 From: ansarkar-github Date: Mon, 12 Aug 2019 18:19:13 +0530 Subject: [PATCH 3/4] edited --- app/templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/index.html b/app/templates/index.html index 3c167f6f..0bab4a16 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -5,6 +5,6 @@ Index page -Hello.The hostname of the container is {{ hostname }} and its IP is {{ ip }}. +Hello All.The hostname of the container is {{ hostname }} and its IP is {{ ip }}. From 33a0b8570c80264c82cd53edc9229c08e27f4534 Mon Sep 17 00:00:00 2001 From: ansarkar-github Date: Mon, 12 Aug 2019 18:24:14 +0530 Subject: [PATCH 4/4] Draft create --- .../.helmignore | 0 .../Chart.yaml | 2 +- .../{test-python-flask-docker => python-flask-docker}/Makefile | 0 .../templates/NOTES.txt | 0 .../templates/_helpers.tpl | 0 .../templates/deployment.yaml | 0 .../templates/ingress.yaml | 0 .../templates/ksvc.yaml | 0 .../templates/service.yaml | 0 .../values.yaml | 0 10 files changed, 1 insertion(+), 1 deletion(-) rename charts/{test-python-flask-docker => python-flask-docker}/.helmignore (100%) rename charts/{test-python-flask-docker => python-flask-docker}/Chart.yaml (69%) rename charts/{test-python-flask-docker => python-flask-docker}/Makefile (100%) rename charts/{test-python-flask-docker => python-flask-docker}/templates/NOTES.txt (100%) rename charts/{test-python-flask-docker => python-flask-docker}/templates/_helpers.tpl (100%) rename charts/{test-python-flask-docker => python-flask-docker}/templates/deployment.yaml (100%) rename charts/{test-python-flask-docker => python-flask-docker}/templates/ingress.yaml (100%) rename charts/{test-python-flask-docker => python-flask-docker}/templates/ksvc.yaml (100%) rename charts/{test-python-flask-docker => python-flask-docker}/templates/service.yaml (100%) rename charts/{test-python-flask-docker => python-flask-docker}/values.yaml (100%) diff --git a/charts/test-python-flask-docker/.helmignore b/charts/python-flask-docker/.helmignore similarity index 100% rename from charts/test-python-flask-docker/.helmignore rename to charts/python-flask-docker/.helmignore diff --git a/charts/test-python-flask-docker/Chart.yaml b/charts/python-flask-docker/Chart.yaml similarity index 69% rename from charts/test-python-flask-docker/Chart.yaml rename to charts/python-flask-docker/Chart.yaml index 3b90b77a..f444aa03 100644 --- a/charts/test-python-flask-docker/Chart.yaml +++ b/charts/python-flask-docker/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v1 description: A Helm chart for Kubernetes -name: test-python-flask-docker +name: python-flask-docker version: v0.1.0 diff --git a/charts/test-python-flask-docker/Makefile b/charts/python-flask-docker/Makefile similarity index 100% rename from charts/test-python-flask-docker/Makefile rename to charts/python-flask-docker/Makefile diff --git a/charts/test-python-flask-docker/templates/NOTES.txt b/charts/python-flask-docker/templates/NOTES.txt similarity index 100% rename from charts/test-python-flask-docker/templates/NOTES.txt rename to charts/python-flask-docker/templates/NOTES.txt diff --git a/charts/test-python-flask-docker/templates/_helpers.tpl b/charts/python-flask-docker/templates/_helpers.tpl similarity index 100% rename from charts/test-python-flask-docker/templates/_helpers.tpl rename to charts/python-flask-docker/templates/_helpers.tpl diff --git a/charts/test-python-flask-docker/templates/deployment.yaml b/charts/python-flask-docker/templates/deployment.yaml similarity index 100% rename from charts/test-python-flask-docker/templates/deployment.yaml rename to charts/python-flask-docker/templates/deployment.yaml diff --git a/charts/test-python-flask-docker/templates/ingress.yaml b/charts/python-flask-docker/templates/ingress.yaml similarity index 100% rename from charts/test-python-flask-docker/templates/ingress.yaml rename to charts/python-flask-docker/templates/ingress.yaml diff --git a/charts/test-python-flask-docker/templates/ksvc.yaml b/charts/python-flask-docker/templates/ksvc.yaml similarity index 100% rename from charts/test-python-flask-docker/templates/ksvc.yaml rename to charts/python-flask-docker/templates/ksvc.yaml diff --git a/charts/test-python-flask-docker/templates/service.yaml b/charts/python-flask-docker/templates/service.yaml similarity index 100% rename from charts/test-python-flask-docker/templates/service.yaml rename to charts/python-flask-docker/templates/service.yaml diff --git a/charts/test-python-flask-docker/values.yaml b/charts/python-flask-docker/values.yaml similarity index 100% rename from charts/test-python-flask-docker/values.yaml rename to charts/python-flask-docker/values.yaml