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 apiVersion: networking.k8s.io/v1
kind: Ingress kind: Ingress
metadata: 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 apiVersion: v1
kind: Service kind: Service
metadata: metadata:

View file

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

View file

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