diff --git a/helm-guestbook/templates/deployment.yaml b/helm-guestbook/templates/deployment.yaml index e717013588..07ca336134 100644 --- a/helm-guestbook/templates/deployment.yaml +++ b/helm-guestbook/templates/deployment.yaml @@ -2,15 +2,13 @@ apiVersion: apps/v1 kind: Deployment metadata: name: {{ template "helm-guestbook.fullname" . }} - namespace: not-exist + namespace: argocd labels: app: {{ template "helm-guestbook.name" . }} chart: {{ template "helm-guestbook.chart" . }} release: {{ .Release.Name }} - heritage: {{ .Release.Service }} spec: replicas: {{ .Values.replicaCount }} - revisionHistoryLimit: 3 selector: matchLabels: app: {{ template "helm-guestbook.name" . }} @@ -23,31 +21,9 @@ spec: spec: containers: - name: {{ .Chart.Name }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + image: "{{ .Values.image.repository }}:0.1" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http - containerPort: 802 + containerPort: 80 protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http - resources: -{{ toYaml .Values.resources | indent 12 }} - {{- with .Values.nodeSelector }} - nodeSelector: -{{ toYaml . | indent 8 }} - {{- end }} - {{- with .Values.affinity }} - affinity: -{{ toYaml . | indent 8 }} - {{- end }} - {{- with .Values.tolerations }} - tolerations: -{{ toYaml . | indent 8 }} - {{- end }}