-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add/enable missing apps to sync with vintage (#636)
* add/enable missing apps to sync with vintage
- Loading branch information
Berk Dehrioglu
authored
Jun 10, 2024
1 parent
4d2597c
commit c4b7c64
Showing
8 changed files
with
179 additions
and
5 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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
dependencies: | ||
- name: cluster | ||
repository: https://giantswarm.github.io/cluster-catalog | ||
version: 0.29.0 | ||
version: 0.30.1 | ||
- name: cluster-shared | ||
repository: https://giantswarm.github.io/cluster-catalog | ||
version: 0.7.1 | ||
digest: sha256:121c9594b0c076cd5a1a0a9ab06a33980d519614e6fb32005406e21bebebe968 | ||
generated: "2024-05-31T09:36:25.099668049Z" | ||
digest: sha256:3f8917e5d334ab5e1453a3b097d8c1223b5d4f9eca2f92e5e69f0c5acbef52c2 | ||
generated: "2024-06-07T12:41:39.329381+03:00" |
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
Large diffs are not rendered by default.
Oops, something went wrong.
50 changes: 50 additions & 0 deletions
50
helm/cluster-aws/templates/aws-ebs-csi-driver-servicemonitors-app.yaml
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,50 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ include "resource.default.name" . }}-aws-ebs-csi-driver-servicemonitors-user-values | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{- include "labels.common" . | nindent 4 }} | ||
--- | ||
apiVersion: application.giantswarm.io/v1alpha1 | ||
kind: App | ||
metadata: | ||
name: {{ include "resource.default.name" . }}-aws-ebs-csi-driver-smons | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{- include "labels.common" . | nindent 4 }} | ||
giantswarm.io/managed-by: {{ .Chart.Name }} | ||
annotations: | ||
app-operator.giantswarm.io/depends-on: {{ include "resource.default.name" . }}-cert-manager | ||
spec: | ||
catalog: default | ||
name: aws-ebs-csi-driver-servicemonitors | ||
# repo: giantswarm/aws-ebs-csi-driver-servicemonitors | ||
version: 0.1.0 | ||
namespace: kube-system | ||
config: | ||
configMap: | ||
name: {{ include "resource.default.name" . }}-cluster-values | ||
namespace: {{ .Release.Namespace }} | ||
{{- if .Values.global.apps.irsaServiceMonitors.values }} | ||
userConfig: | ||
configMap: | ||
name: {{ include "resource.default.name" . }}-aws-ebs-csi-driver-servicemonitors-user-values | ||
namespace: {{ .Release.Namespace }} | ||
{{- end }} | ||
{{- if .Values.global.apps.awsEbsCsiDriverServiceMonitors.extraConfigs }} | ||
extraConfigs: | ||
{{- range .Values.global.apps.awsEbsCsiDriverServiceMonitors.extraConfigs }} | ||
- kind: {{ .kind }} | ||
name: {{ .name }} | ||
namespace: {{ .namespace | default $.Release.Namespace }} | ||
priority: {{ .priority }} | ||
{{- end }} | ||
{{- end }} | ||
kubeConfig: | ||
inCluster: false | ||
secret: | ||
name: {{ include "resource.default.name" . }}-kubeconfig | ||
namespace: {{ .Release.Namespace }} | ||
context: | ||
name: {{ include "resource.default.name" . }}-admin@{{ include "resource.default.name" . }} |
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,50 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ include "resource.default.name" . }}-irsa-servicemonitors-user-values | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{- include "labels.common" . | nindent 4 }} | ||
--- | ||
apiVersion: application.giantswarm.io/v1alpha1 | ||
kind: App | ||
metadata: | ||
name: {{ include "resource.default.name" . }}-irsa-servicemonitors | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{- include "labels.common" . | nindent 4 }} | ||
giantswarm.io/managed-by: {{ .Chart.Name }} | ||
annotations: | ||
app-operator.giantswarm.io/depends-on: {{ include "resource.default.name" . }}-cert-manager | ||
spec: | ||
catalog: default | ||
name: irsa-servicemonitors | ||
# repo: giantswarm/irsa-servicemonitors | ||
version: 0.0.1 | ||
namespace: kube-system | ||
config: | ||
configMap: | ||
name: {{ include "resource.default.name" . }}-cluster-values | ||
namespace: {{ .Release.Namespace }} | ||
{{- if .Values.global.apps.irsaServiceMonitors.values }} | ||
userConfig: | ||
configMap: | ||
name: {{ include "resource.default.name" . }}-irsa-servicemonitors-user-values | ||
namespace: {{ .Release.Namespace }} | ||
{{- end }} | ||
{{- if .Values.global.apps.irsaServiceMonitors.extraConfigs }} | ||
extraConfigs: | ||
{{- range .Values.global.apps.irsaServiceMonitors.extraConfigs }} | ||
- kind: {{ .kind }} | ||
name: {{ .name }} | ||
namespace: {{ .namespace | default $.Release.Namespace }} | ||
priority: {{ .priority }} | ||
{{- end }} | ||
{{- end }} | ||
kubeConfig: | ||
inCluster: false | ||
secret: | ||
name: {{ include "resource.default.name" . }}-kubeconfig | ||
namespace: {{ .Release.Namespace }} | ||
context: | ||
name: {{ include "resource.default.name" . }}-admin@{{ include "resource.default.name" . }} |
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