-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixes the secret handling you either have to configure a dockerjsonconfig or a global.imagepullsecrets but when you configure both, both are added to the imagepullsecrets in the deployments and stateful-sets * refactors the secret handling to streamline it with the mini-identity-provider * adds the DNS Port to the networkPolicy of the updater * adjust config * also update the mini-identity-provider dependency
- Loading branch information
1 parent
e61f0b7
commit 22e0ff1
Showing
11 changed files
with
125 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ | |
*.tgz | ||
.fleet/ | ||
.output/ | ||
Chart.lock | ||
Chart.lock | ||
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{{- if .Values.imagePullSecret }} | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ include "gateway.fullname" . }}-image-pull-secret | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
.dockerconfigjson: {{ .Values.imagePullSecret }} | ||
type: kubernetes.io/dockerconfigjson | ||
{{- end }} | ||
{{- if ((.Values.global).secret).imagePullSecret }} | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ include "gateway.fullname" . }}-global-image-pull-secret | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
.dockerconfigjson: {{ .Values.global.secret.imagePullSecret }} | ||
type: kubernetes.io/dockerconfigjson | ||
{{- end }} | ||
{{- if ((.Values.global).secret).dockerconfigjson }} | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ include "gateway.fullname" . }}-global-dockerconfigjson | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
.dockerconfigjson: {{ .Values.global.secret.dockerconfigjson }} | ||
type: kubernetes.io/dockerconfigjson | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{{- if .Values.imagePullSecret }} | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ include "gdscan.fullname" . }}-image-pull-secret | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
.dockerconfigjson: {{ .Values.imagePullSecret }} | ||
type: kubernetes.io/dockerconfigjson | ||
{{- end }} | ||
{{- if ((.Values.global).secret).imagePullSecret }} | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ include "gdscan.fullname" . }}-global-image-pull-secret | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
.dockerconfigjson: {{ .Values.global.secret.imagePullSecret }} | ||
type: kubernetes.io/dockerconfigjson | ||
{{- end }} | ||
{{- if ((.Values.global).secret).dockerconfigjson }} | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ include "gdscan.fullname" . }}-global-dockerconfigjson | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
.dockerconfigjson: {{ .Values.global.secret.dockerconfigjson }} | ||
type: kubernetes.io/dockerconfigjson | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters