-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request 'Weekly Helm Update' (#428) from Helm_Update_20240…
…930_MTg4NjgK into master Reviewed-on: https://gitea.obmondo.com/EnableIT/KubeAid/pulls/428
- Loading branch information
Showing
192 changed files
with
13,928 additions
and
55,409 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
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 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 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,6 +1,6 @@ | ||
dependencies: | ||
- name: argo-cd | ||
repository: https://argoproj.github.io/argo-helm | ||
version: 7.6.1 | ||
digest: sha256:eda6ea20b3c7e49fcabe99e345b159a864d298a55c34400677bffcd36fffe50f | ||
generated: "2024-09-23T13:10:14.747269827+05:30" | ||
version: 7.6.5 | ||
digest: sha256:627c267a384b5f57bc1b95a9710e503884be0cbc2c3ba5644ef3be14cea3d000 | ||
generated: "2024-09-30T20:21:44.703235133+05:30" |
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,6 +1,6 @@ | ||
dependencies: | ||
- name: cilium | ||
repository: https://helm.cilium.io/ | ||
version: 1.16.1 | ||
digest: sha256:8f6930fe9c9ca0146ef906ecc58c6f7f88f649ef83e75a056575f644b9211f40 | ||
generated: "2024-08-23T23:47:30.04428137+05:30" | ||
version: 1.16.2 | ||
digest: sha256:4df71027a1b97908a5d72e1e19f32b5ad31a0efd173c106c99b687ffe75a6106 | ||
generated: "2024-09-30T20:24:02.916013146+05:30" |
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 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
33 changes: 33 additions & 0 deletions
33
argocd-helm-charts/cilium/charts/cilium/templates/cilium-envoy/service.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,33 @@ | ||
{{- $envoyDS := eq (include "envoyDaemonSetEnabled" .) "true" -}} | ||
{{- if and $envoyDS (not .Values.preflight.enabled) .Values.envoy.prometheus.enabled }} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: cilium-envoy | ||
namespace: {{ .Release.Namespace }} | ||
{{- if or (not .Values.envoy.prometheus.serviceMonitor.enabled) .Values.envoy.annotations }} | ||
annotations: | ||
{{- if not .Values.envoy.prometheus.serviceMonitor.enabled }} | ||
prometheus.io/scrape: "true" | ||
prometheus.io/port: {{ .Values.envoy.prometheus.port | quote }} | ||
{{- end }} | ||
{{- with .Values.envoy.annotations }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
{{- end }} | ||
labels: | ||
k8s-app: cilium-envoy | ||
app.kubernetes.io/name: cilium-envoy | ||
app.kubernetes.io/part-of: cilium | ||
io.cilium/app: proxy | ||
spec: | ||
clusterIP: None | ||
type: ClusterIP | ||
selector: | ||
k8s-app: cilium-envoy | ||
ports: | ||
- name: envoy-metrics | ||
port: {{ .Values.envoy.prometheus.port }} | ||
protocol: TCP | ||
targetPort: envoy-metrics | ||
{{- end }} |
Oops, something went wrong.