feat: kind deployment

This commit is contained in:
devthejo 2023-12-17 11:31:11 +01:00
parent 16e61ee217
commit ba62fd730a
Signed by: devthejo
GPG key ID: C04215C627711F5C
4 changed files with 12 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{{- if and (eq .Values.rollout.strategy.type "BlueGreen") .Values.preview.ingress.enabled -}}
{{- if and (eq .Values.kind "Rollout") (eq .Values.rollout.strategy.type "BlueGreen") .Values.preview.ingress.enabled -}}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:

View file

@ -1,4 +1,4 @@
{{- if and .Values.exposed .Values.service.enabled (eq .Values.rollout.strategy.type "BlueGreen") -}}
{{- if and (eq .Values.kind "Rollout") .Values.exposed .Values.service.enabled (eq .Values.rollout.strategy.type "BlueGreen") -}}
apiVersion: v1
kind: Service
metadata:

View file

@ -1,5 +1,5 @@
apiVersion: argoproj.io/v1alpha1
kind: Rollout
apiVersion: {{ eq .Values.kind "Rollout" | ternary "argoproj.io/v1alpha1" "apps/v1" }}
kind: {{ .Values.kind }}
metadata:
name: {{ include "common.names.fullname" . }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
@ -17,6 +17,7 @@ spec:
selector:
matchLabels: {{ include "common.labels.matchLabels" . | nindent 6 }}
strategy:
{{- if eq .Values.kind "Rollout" }}
{{- if eq .Values.rollout.strategy.type "BlueGreen" }}
blueGreen:
activeService: {{ default (include "common.names.fullname" .) .Values.rollout.strategy.blueGreen.activeService | quote }}
@ -36,6 +37,9 @@ spec:
rollingUpdate:
{{- toYaml .Values.rollout.strategy.rollingUpdate | nindent 6 }}
{{- end }}
{{- else }}
{{- .Values.deployment.strategy | toYaml | nindent 4 }}
{{- end }}
template:
metadata:
annotations:

View file

@ -1,6 +1,7 @@
fullnameOverride: ""
nameOverride: ""
kind: Rollout
exposed: true
image:
@ -99,6 +100,9 @@ namespace:
labels:
alerte-secours-tls: wildcard
deployment:
strategy: {}
rollout:
strategy:
type: "BlueGreen"