From 266cd60e105d9788e326066fda53aaec14f64f3f Mon Sep 17 00:00:00 2001 From: vitaliy Date: Tue, 18 Nov 2025 00:29:28 +0300 Subject: [PATCH] cd: edit monifest --- helm/templates/deployment.yaml | 2 +- helm/templates/ingress.yaml | 20 -------------------- 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 helm/templates/ingress.yaml diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index 118f1df..1b5222c 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -16,6 +16,6 @@ spec: spec: containers: - name: go_hello - image: "git.gocommunity.ru/go-hello:{{ .Chart.AppVersion }}" + image: "git.gocommunity.ru/chertkov/do_simple:latest" ports: - containerPort: 8080 \ No newline at end of file diff --git a/helm/templates/ingress.yaml b/helm/templates/ingress.yaml deleted file mode 100644 index dc0a74d..0000000 --- a/helm/templates/ingress.yaml +++ /dev/null @@ -1,20 +0,0 @@ -{{- if .Values.ingress.enabled -}} -apiVersion: extensions/v1beta1 -kind: Ingress -metadata: - name: helloworld - namespace: default - annotations: - kubernetes.io/ingress.class: alb - alb.ingress.kubernetes.io/scheme: internet-facing - alb.ingress.kubernetes.io/group.name: default - alb.ingress.kubernetes.io/target-type: ip -spec: - rules: - - http: - paths: - - path: /* - backend: - serviceName: helloworld - servicePort: 80 -{{- end -}} \ No newline at end of file