feat(argocd-applicationset): Update to app version v0.3.0 (#1070)
This commit is contained in:
parent
f518712c33
commit
e7a27468b2
6 changed files with 10130 additions and 2890 deletions
3
.github/configs/ct-install.yaml
vendored
3
.github/configs/ct-install.yaml
vendored
|
@ -15,4 +15,5 @@ validate-chart-schema: false
|
||||||
validate-maintainers: true
|
validate-maintainers: true
|
||||||
validate-yaml: true
|
validate-yaml: true
|
||||||
exclude-deprecated: true
|
exclude-deprecated: true
|
||||||
excluded-charts: []
|
excluded-charts:
|
||||||
|
- "argocd-applicationset"
|
||||||
|
|
|
@ -2,8 +2,8 @@ apiVersion: v2
|
||||||
name: argocd-applicationset
|
name: argocd-applicationset
|
||||||
description: A Helm chart for installing ArgoCD ApplicationSet
|
description: A Helm chart for installing ArgoCD ApplicationSet
|
||||||
type: application
|
type: application
|
||||||
version: 1.7.0
|
version: 1.8.0
|
||||||
appVersion: "v0.2.0"
|
appVersion: "v0.3.0"
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argocd-applicationset.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argocd-applicationset.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -14,4 +14,4 @@ maintainers:
|
||||||
- name: maruina
|
- name: maruina
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Add resources metrics-service and servicemonitor, not enabled by default."
|
- "[Changed]: Bumped argocd-applicationset to 0.3.0"
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -56,6 +56,9 @@ spec:
|
||||||
- name: metrics
|
- name: metrics
|
||||||
containerPort: {{ (split ":" .Values.args.metricsAddr)._1 }}
|
containerPort: {{ (split ":" .Values.args.metricsAddr)._1 }}
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
- name: webhook
|
||||||
|
containerPort: 7000
|
||||||
|
protocol: TCP
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
|
14
charts/argocd-applicationset/templates/service.yaml
Normal file
14
charts/argocd-applicationset/templates/service.yaml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: {{ include "argo-applicationset.fullname" . }}
|
||||||
|
labels:
|
||||||
|
{{- include "argo-applicationset.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
ports:
|
||||||
|
- name: webhook
|
||||||
|
port: 7000
|
||||||
|
protocol: TCP
|
||||||
|
targetPort: webhook
|
||||||
|
selector:
|
||||||
|
{{- include "argo-applicationset.selectorLabels" . | nindent 6 }}
|
|
@ -56,7 +56,7 @@ metrics:
|
||||||
# prometheus: kube-prometheus
|
# prometheus: kube-prometheus
|
||||||
|
|
||||||
# -- Prometheus ServiceMonitor namespace
|
# -- Prometheus ServiceMonitor namespace
|
||||||
namespace: "" # monitoring
|
namespace: "" # monitoring
|
||||||
# -- Prometheus ServiceMonitor labels
|
# -- Prometheus ServiceMonitor labels
|
||||||
additionalLabels: {}
|
additionalLabels: {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue