├── Helm_cheatsheet_functions.md ├── Named_templated ├── example-1 │ ├── Chart.yaml │ ├── templates │ │ └── functions.yaml │ └── values.yaml ├── example-2 │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── functions.yaml │ └── values.yaml ├── example-3 │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── functions.yaml │ └── values.yaml └── example-4 │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ └── functions.yaml │ └── values.yaml ├── README.md ├── Tem_functions ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ └── functions.yaml └── values.yaml ├── flow-control ├── if_else │ ├── example-1 │ │ ├── Chart.yaml │ │ ├── templates │ │ │ └── functions.yaml │ │ └── values.yaml │ └── example-2 │ │ ├── Chart.yaml │ │ ├── templates │ │ └── functions.yaml │ │ └── values.yaml ├── range │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ └── functions.yaml │ └── values.yaml └── with │ ├── Chart.yaml │ ├── templates │ └── functions.yaml │ └── values.yaml ├── helmhooks ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── post-install.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── multiple-env ├── .helmignore ├── Chart.yaml ├── config │ ├── dev │ │ └── config.yaml │ ├── prod │ │ └── config.yaml │ └── qa │ │ └── config.yaml ├── templates │ ├── configmap.yaml │ ├── hpa.yaml │ └── pod.yaml ├── values-dev.yaml ├── values-prod.yaml └── values-qa.yaml ├── my-ui ├── Chart.lock ├── Chart.yaml ├── charts │ ├── jenkins-3.5.2.tgz │ └── mysql-1.6.9.tgz ├── files │ └── application.properties ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── function.yaml │ ├── hpa.yaml │ └── service.yaml ├── values-dev.yaml ├── values-prod.yaml ├── values-qa.yaml └── values.yaml ├── nginxdependency ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── singlecharts-multienv ├── config.xml ├── config.yaml ├── dev.yaml ├── kube_dev.yaml ├── kube_prod.yaml ├── kube_qa.yaml ├── prod.yaml ├── qa.yaml └── ui │ ├── .helmignore │ ├── Chart.yaml │ ├── config │ ├── dev │ │ └── config.xml │ ├── prod │ │ └── config.xml │ └── qa │ │ └── config.xml │ ├── templates │ ├── _helpers.tpl │ ├── configmap-xml.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ └── service.yaml │ ├── values-dev.yaml │ ├── values-prod.yaml │ └── values-qa.yaml ├── tomcat ├── .helmignore ├── Chart.yaml ├── ci │ └── values-with-ingress-and-initcontainers.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── pvc.yaml │ ├── secrets.yaml │ └── svc.yaml └── values.yaml └── variable ├── variable-range ├── Chart.yaml ├── templates │ └── functions.yaml └── values.yaml └── variable-with ├── Chart.yaml ├── templates └── functions.yaml └── values.yaml /Helm_cheatsheet_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Helm_cheatsheet_functions.md -------------------------------------------------------------------------------- /Named_templated/example-1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-1/Chart.yaml -------------------------------------------------------------------------------- /Named_templated/example-1/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-1/templates/functions.yaml -------------------------------------------------------------------------------- /Named_templated/example-1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-1/values.yaml -------------------------------------------------------------------------------- /Named_templated/example-2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-2/Chart.yaml -------------------------------------------------------------------------------- /Named_templated/example-2/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-2/templates/_helpers.tpl -------------------------------------------------------------------------------- /Named_templated/example-2/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-2/templates/functions.yaml -------------------------------------------------------------------------------- /Named_templated/example-2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-2/values.yaml -------------------------------------------------------------------------------- /Named_templated/example-3/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-3/Chart.yaml -------------------------------------------------------------------------------- /Named_templated/example-3/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-3/templates/_helpers.tpl -------------------------------------------------------------------------------- /Named_templated/example-3/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-3/templates/functions.yaml -------------------------------------------------------------------------------- /Named_templated/example-3/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-3/values.yaml -------------------------------------------------------------------------------- /Named_templated/example-4/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-4/Chart.yaml -------------------------------------------------------------------------------- /Named_templated/example-4/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-4/templates/_helpers.tpl -------------------------------------------------------------------------------- /Named_templated/example-4/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-4/templates/functions.yaml -------------------------------------------------------------------------------- /Named_templated/example-4/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Named_templated/example-4/values.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Helm_charts 2 | -------------------------------------------------------------------------------- /Tem_functions/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Tem_functions/Chart.yaml -------------------------------------------------------------------------------- /Tem_functions/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Tem_functions/templates/NOTES.txt -------------------------------------------------------------------------------- /Tem_functions/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Tem_functions/templates/_helpers.tpl -------------------------------------------------------------------------------- /Tem_functions/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Tem_functions/templates/deployment.yaml -------------------------------------------------------------------------------- /Tem_functions/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Tem_functions/templates/functions.yaml -------------------------------------------------------------------------------- /Tem_functions/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/Tem_functions/values.yaml -------------------------------------------------------------------------------- /flow-control/if_else/example-1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/if_else/example-1/Chart.yaml -------------------------------------------------------------------------------- /flow-control/if_else/example-1/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/if_else/example-1/templates/functions.yaml -------------------------------------------------------------------------------- /flow-control/if_else/example-1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/if_else/example-1/values.yaml -------------------------------------------------------------------------------- /flow-control/if_else/example-2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/if_else/example-2/Chart.yaml -------------------------------------------------------------------------------- /flow-control/if_else/example-2/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/if_else/example-2/templates/functions.yaml -------------------------------------------------------------------------------- /flow-control/if_else/example-2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/if_else/example-2/values.yaml -------------------------------------------------------------------------------- /flow-control/range/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/range/Chart.yaml -------------------------------------------------------------------------------- /flow-control/range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/range/README.md -------------------------------------------------------------------------------- /flow-control/range/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/range/templates/functions.yaml -------------------------------------------------------------------------------- /flow-control/range/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/range/values.yaml -------------------------------------------------------------------------------- /flow-control/with/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/with/Chart.yaml -------------------------------------------------------------------------------- /flow-control/with/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/with/templates/functions.yaml -------------------------------------------------------------------------------- /flow-control/with/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/flow-control/with/values.yaml -------------------------------------------------------------------------------- /helmhooks/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/.helmignore -------------------------------------------------------------------------------- /helmhooks/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/Chart.yaml -------------------------------------------------------------------------------- /helmhooks/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/templates/NOTES.txt -------------------------------------------------------------------------------- /helmhooks/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/templates/_helpers.tpl -------------------------------------------------------------------------------- /helmhooks/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/templates/deployment.yaml -------------------------------------------------------------------------------- /helmhooks/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/templates/hpa.yaml -------------------------------------------------------------------------------- /helmhooks/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/templates/ingress.yaml -------------------------------------------------------------------------------- /helmhooks/templates/post-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/templates/post-install.yaml -------------------------------------------------------------------------------- /helmhooks/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/templates/service.yaml -------------------------------------------------------------------------------- /helmhooks/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helmhooks/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /helmhooks/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/helmhooks/values.yaml -------------------------------------------------------------------------------- /multiple-env/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/.helmignore -------------------------------------------------------------------------------- /multiple-env/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/Chart.yaml -------------------------------------------------------------------------------- /multiple-env/config/dev/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/config/dev/config.yaml -------------------------------------------------------------------------------- /multiple-env/config/prod/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/config/prod/config.yaml -------------------------------------------------------------------------------- /multiple-env/config/qa/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/config/qa/config.yaml -------------------------------------------------------------------------------- /multiple-env/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/templates/configmap.yaml -------------------------------------------------------------------------------- /multiple-env/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/templates/hpa.yaml -------------------------------------------------------------------------------- /multiple-env/templates/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/templates/pod.yaml -------------------------------------------------------------------------------- /multiple-env/values-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/values-dev.yaml -------------------------------------------------------------------------------- /multiple-env/values-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/values-prod.yaml -------------------------------------------------------------------------------- /multiple-env/values-qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/multiple-env/values-qa.yaml -------------------------------------------------------------------------------- /my-ui/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/Chart.lock -------------------------------------------------------------------------------- /my-ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/Chart.yaml -------------------------------------------------------------------------------- /my-ui/charts/jenkins-3.5.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/charts/jenkins-3.5.2.tgz -------------------------------------------------------------------------------- /my-ui/charts/mysql-1.6.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/charts/mysql-1.6.9.tgz -------------------------------------------------------------------------------- /my-ui/files/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/files/application.properties -------------------------------------------------------------------------------- /my-ui/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/templates/NOTES.txt -------------------------------------------------------------------------------- /my-ui/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/templates/_helpers.tpl -------------------------------------------------------------------------------- /my-ui/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/templates/configmap.yaml -------------------------------------------------------------------------------- /my-ui/templates/function.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/templates/function.yaml -------------------------------------------------------------------------------- /my-ui/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/templates/hpa.yaml -------------------------------------------------------------------------------- /my-ui/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/templates/service.yaml -------------------------------------------------------------------------------- /my-ui/values-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/values-dev.yaml -------------------------------------------------------------------------------- /my-ui/values-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/values-prod.yaml -------------------------------------------------------------------------------- /my-ui/values-qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/my-ui/values-qa.yaml -------------------------------------------------------------------------------- /my-ui/values.yaml: -------------------------------------------------------------------------------- 1 | env: 2 | VERSION: v1.0.0 3 | servicename: nginx -------------------------------------------------------------------------------- /nginxdependency/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/.helmignore -------------------------------------------------------------------------------- /nginxdependency/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/Chart.lock -------------------------------------------------------------------------------- /nginxdependency/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/Chart.yaml -------------------------------------------------------------------------------- /nginxdependency/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/templates/NOTES.txt -------------------------------------------------------------------------------- /nginxdependency/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/templates/_helpers.tpl -------------------------------------------------------------------------------- /nginxdependency/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/templates/deployment.yaml -------------------------------------------------------------------------------- /nginxdependency/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/templates/hpa.yaml -------------------------------------------------------------------------------- /nginxdependency/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/templates/ingress.yaml -------------------------------------------------------------------------------- /nginxdependency/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/templates/service.yaml -------------------------------------------------------------------------------- /nginxdependency/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /nginxdependency/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /nginxdependency/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/nginxdependency/values.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/config.xml -------------------------------------------------------------------------------- /singlecharts-multienv/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/config.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/dev.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/kube_dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/kube_dev.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/kube_prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/kube_prod.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/kube_qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/kube_qa.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/prod.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/qa.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/.helmignore -------------------------------------------------------------------------------- /singlecharts-multienv/ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/Chart.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/config/dev/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/config/dev/config.xml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/config/prod/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/config/prod/config.xml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/config/qa/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/config/qa/config.xml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/templates/_helpers.tpl -------------------------------------------------------------------------------- /singlecharts-multienv/ui/templates/configmap-xml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/templates/configmap-xml.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/templates/configmap.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/templates/deployment.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/templates/hpa.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/templates/service.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/values-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/values-dev.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/values-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/values-prod.yaml -------------------------------------------------------------------------------- /singlecharts-multienv/ui/values-qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/singlecharts-multienv/ui/values-qa.yaml -------------------------------------------------------------------------------- /tomcat/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/.helmignore -------------------------------------------------------------------------------- /tomcat/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/Chart.yaml -------------------------------------------------------------------------------- /tomcat/ci/values-with-ingress-and-initcontainers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/ci/values-with-ingress-and-initcontainers.yaml -------------------------------------------------------------------------------- /tomcat/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/templates/NOTES.txt -------------------------------------------------------------------------------- /tomcat/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/templates/_helpers.tpl -------------------------------------------------------------------------------- /tomcat/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/templates/deployment.yaml -------------------------------------------------------------------------------- /tomcat/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/templates/ingress.yaml -------------------------------------------------------------------------------- /tomcat/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/templates/pvc.yaml -------------------------------------------------------------------------------- /tomcat/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/templates/secrets.yaml -------------------------------------------------------------------------------- /tomcat/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/templates/svc.yaml -------------------------------------------------------------------------------- /tomcat/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/tomcat/values.yaml -------------------------------------------------------------------------------- /variable/variable-range/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/variable/variable-range/Chart.yaml -------------------------------------------------------------------------------- /variable/variable-range/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/variable/variable-range/templates/functions.yaml -------------------------------------------------------------------------------- /variable/variable-range/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/variable/variable-range/values.yaml -------------------------------------------------------------------------------- /variable/variable-with/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/variable/variable-with/Chart.yaml -------------------------------------------------------------------------------- /variable/variable-with/templates/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/variable/variable-with/templates/functions.yaml -------------------------------------------------------------------------------- /variable/variable-with/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Helm_charts/HEAD/variable/variable-with/values.yaml --------------------------------------------------------------------------------