From eef9fef1141c6295b824b884ad86d645cd1c094f Mon Sep 17 00:00:00 2001 From: shreyagupta30 Date: Mon, 27 Sep 2021 14:35:36 +0530 Subject: Automated deployment of helm charts with python This patch adds demo helm charts and a python script that automatically deploys any helm chart of user's choice and print all the useful information about the chart. Signed-off-by: Shreya Gupta Change-Id: I06e3a8012602e09f601f70def386ef267c870e94 --- .../helm/charts/proxchart/templates/service.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tools/k8s/app-deployment/helm/charts/proxchart/templates/service.yaml (limited to 'tools/k8s/app-deployment/helm/charts/proxchart/templates/service.yaml') diff --git a/tools/k8s/app-deployment/helm/charts/proxchart/templates/service.yaml b/tools/k8s/app-deployment/helm/charts/proxchart/templates/service.yaml new file mode 100644 index 00000000..15215f35 --- /dev/null +++ b/tools/k8s/app-deployment/helm/charts/proxchart/templates/service.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Service +metadata: + name: proxchart +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http -- cgit 1.2.3-korg