Merge branch 'main' of https://github.com/argoproj/argo-helm into istio
Signed-off-by: Yevhen Tienkaiev <hronom@gmail.com> # Conflicts: # charts/argo-cd/Chart.yaml # charts/argo-rollouts/Chart.yaml
This commit is contained in:
commit
f2bf0caad8
53 changed files with 884 additions and 66 deletions
8
.github/configs/cr.yaml
vendored
8
.github/configs/cr.yaml
vendored
|
@ -1,2 +1,8 @@
|
||||||
## Reference: https://github.com/helm/chart-releaser
|
## Reference: https://github.com/helm/chart-releaser
|
||||||
index-path: "./index.yaml"
|
index-path: "./index.yaml"
|
||||||
|
|
||||||
|
# PGP signing
|
||||||
|
sign: true
|
||||||
|
key: Argo Helm maintainers
|
||||||
|
# keyring: # Set via env variable CR_KEYRING
|
||||||
|
# passphrase-file: # Set via env variable CR_PASSPHRASE_FILE
|
||||||
|
|
12
.github/workflows/lint-and-test.yml
vendored
12
.github/workflows/lint-and-test.yml
vendored
|
@ -6,6 +6,18 @@ permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
linter-artifacthub:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: public.ecr.aws/artifacthub/ah:v1.14.0
|
||||||
|
options: --user 1001
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
|
- name: Run ah lint
|
||||||
|
working-directory: ./charts
|
||||||
|
run: ah lint
|
||||||
|
|
||||||
chart-test:
|
chart-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
9
.github/workflows/pr-sizing.yml
vendored
9
.github/workflows/pr-sizing.yml
vendored
|
@ -1,8 +1,12 @@
|
||||||
## Reference: https://github.com/pascalgn/size-label-action
|
## Reference: https://github.com/pascalgn/size-label-action
|
||||||
name: 'PR Labeling'
|
name: 'PR Labeling'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
types: [opened, synchronize, reopened]
|
types:
|
||||||
|
- opened
|
||||||
|
- synchronize
|
||||||
|
- reopened
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -21,7 +25,6 @@ jobs:
|
||||||
size-label:
|
size-label:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: size-label
|
- uses: pascalgn/size-label-action@1619680c5ac1ef360b944bb56a57587ba4aa2af8 # v0.4.3
|
||||||
uses: "pascalgn/size-label-action@1619680c5ac1ef360b944bb56a57587ba4aa2af8 # v0.4.3"
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
|
16
.github/workflows/publish.yml
vendored
16
.github/workflows/publish.yml
vendored
|
@ -38,6 +38,22 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
git checkout origin/gh-pages index.yaml
|
git checkout origin/gh-pages index.yaml
|
||||||
|
|
||||||
|
# The GitHub repository secret `PGP_PRIVATE_KEY` contains the private key
|
||||||
|
# in ASCII-armored format. To export a (new) key, run this command:
|
||||||
|
# `gpg --armor --export-secret-key <my key>`
|
||||||
|
- name: Prepare PGP key
|
||||||
|
run: |
|
||||||
|
IFS=""
|
||||||
|
echo "$PGP_PRIVATE_KEY" | gpg --dearmor > $HOME/secring.gpg
|
||||||
|
echo "$PGP_PASSPHRASE" > $HOME/passphrase.txt
|
||||||
|
|
||||||
|
# Tell chart-releaser-action where to find the key and its passphrase
|
||||||
|
echo "CR_KEYRING=$HOME/secring.gpg" >> "$GITHUB_ENV"
|
||||||
|
echo "CR_PASSPHRASE_FILE=$HOME/passphrase.txt" >> "$GITHUB_ENV"
|
||||||
|
env:
|
||||||
|
PGP_PRIVATE_KEY: "${{ secrets.PGP_PRIVATE_KEY }}"
|
||||||
|
PGP_PASSPHRASE: "${{ secrets.PGP_PASSPHRASE }}"
|
||||||
|
|
||||||
- name: Run chart-releaser
|
- name: Run chart-releaser
|
||||||
uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 # v1.5.0
|
uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 # v1.5.0
|
||||||
with:
|
with:
|
||||||
|
|
3
.github/workflows/scorecard.yml
vendored
3
.github/workflows/scorecard.yml
vendored
|
@ -19,6 +19,7 @@ permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analysis:
|
analysis:
|
||||||
|
if: github.repository_owner == 'argoproj'
|
||||||
name: Scorecard analysis
|
name: Scorecard analysis
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
|
@ -32,7 +33,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
* @mkilchhofer @jmeridth
|
* @mkilchhofer @jmeridth
|
||||||
|
|
||||||
# Argo Workflows
|
# Argo Workflows
|
||||||
/charts/argo-workflows/ @vladlosev @jmeridth @yu-croco
|
/charts/argo-workflows/ @vladlosev @jmeridth @yu-croco @tico24
|
||||||
|
|
||||||
# Argo CD
|
# Argo CD
|
||||||
/charts/argo-cd/ @mbevc1 @mkilchhofer @yu-croco @jmeridth @pdrastil
|
/charts/argo-cd/ @mbevc1 @mkilchhofer @yu-croco @jmeridth @pdrastil @tico24
|
||||||
|
|
||||||
# Argo Events
|
# Argo Events
|
||||||
/charts/argo-events/ @pdrastil @jmeridth
|
/charts/argo-events/ @pdrastil @jmeridth @tico24
|
||||||
|
|
||||||
# Argo Rollouts
|
# Argo Rollouts
|
||||||
/charts/argo-rollouts/ @jmeridth
|
/charts/argo-rollouts/ @jmeridth
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: redis-ha
|
- name: redis-ha
|
||||||
repository: https://dandydeveloper.github.io/charts/
|
repository: https://dandydeveloper.github.io/charts/
|
||||||
version: 4.22.5
|
version: 4.23.0
|
||||||
digest: sha256:d2e927511e515fb862f23dd413ee3a356c855d808f6f9ad1d345ee62b8c7ea16
|
digest: sha256:589f9972fbdf36194d443c9d3be2a1747f43e03c435fc48004cc0cbe6b3c6e3c
|
||||||
generated: "2023-03-30T08:25:32.738257836+02:00"
|
generated: "2023-05-15T19:25:26.049618+09:00"
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: v2.7.1
|
appVersion: v2.7.2
|
||||||
kubeVersion: ">=1.22.0-0"
|
kubeVersion: ">=1.22.0-0"
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 5.32.1
|
version: 5.34.1
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -18,10 +18,13 @@ maintainers:
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: redis-ha
|
- name: redis-ha
|
||||||
version: 4.22.5
|
version: 4.23.0
|
||||||
repository: https://dandydeveloper.github.io/charts/
|
repository: https://dandydeveloper.github.io/charts/
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
|
artifacthub.io/signKey: |
|
||||||
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: added
|
- kind: added
|
||||||
description: Allow extraObjects to contain string templates
|
description: Add new bitbucket cloud SSH key to configs.ssh.knownHosts
|
||||||
|
|
|
@ -379,6 +379,7 @@ NAME: my-release
|
||||||
| apiVersionOverrides.autoscaling | string | `""` | String to override apiVersion of autoscaling rendered by this helm chart |
|
| apiVersionOverrides.autoscaling | string | `""` | String to override apiVersion of autoscaling rendered by this helm chart |
|
||||||
| apiVersionOverrides.certmanager | string | `""` | String to override apiVersion of cert-manager resources rendered by this helm chart |
|
| apiVersionOverrides.certmanager | string | `""` | String to override apiVersion of cert-manager resources rendered by this helm chart |
|
||||||
| apiVersionOverrides.cloudgoogle | string | `""` | String to override apiVersion of GKE resources rendered by this helm chart |
|
| apiVersionOverrides.cloudgoogle | string | `""` | String to override apiVersion of GKE resources rendered by this helm chart |
|
||||||
|
| crds.additionalLabels | object | `{}` | Addtional labels to be added to all CRDs |
|
||||||
| crds.annotations | object | `{}` | Annotations to be added to all CRDs |
|
| crds.annotations | object | `{}` | Annotations to be added to all CRDs |
|
||||||
| crds.install | bool | `true` | Install and upgrade CRDs |
|
| crds.install | bool | `true` | Install and upgrade CRDs |
|
||||||
| crds.keep | bool | `true` | Keep CRDs on chart uninstall |
|
| crds.keep | bool | `true` | Keep CRDs on chart uninstall |
|
||||||
|
@ -394,6 +395,7 @@ NAME: my-release
|
||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
|
| global.addPrometheusAnnotations | bool | `false` | Add Prometheus scrape annotations to all metrics services. This can be used as an alternative to the ServiceMonitors. |
|
||||||
| global.additionalLabels | object | `{}` | Common labels for the all resources |
|
| global.additionalLabels | object | `{}` | Common labels for the all resources |
|
||||||
| global.affinity.nodeAffinity.matchExpressions | list | `[]` | Default match expressions for node affinity |
|
| global.affinity.nodeAffinity.matchExpressions | list | `[]` | Default match expressions for node affinity |
|
||||||
| global.affinity.nodeAffinity.type | string | `"hard"` | Default node affinity rules. Either: `none`, `soft` or `hard` |
|
| global.affinity.nodeAffinity.type | string | `"hard"` | Default node affinity rules. Either: `none`, `soft` or `hard` |
|
||||||
|
@ -513,9 +515,11 @@ NAME: my-release
|
||||||
| controller.metrics.rules.selector | object | `{}` | PrometheusRule selector |
|
| controller.metrics.rules.selector | object | `{}` | PrometheusRule selector |
|
||||||
| controller.metrics.rules.spec | list | `[]` | PrometheusRule.Spec for the application controller |
|
| controller.metrics.rules.spec | list | `[]` | PrometheusRule.Spec for the application controller |
|
||||||
| controller.metrics.service.annotations | object | `{}` | Metrics service annotations |
|
| controller.metrics.service.annotations | object | `{}` | Metrics service annotations |
|
||||||
|
| controller.metrics.service.clusterIP | string | `""` | Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) |
|
||||||
| controller.metrics.service.labels | object | `{}` | Metrics service labels |
|
| controller.metrics.service.labels | object | `{}` | Metrics service labels |
|
||||||
| controller.metrics.service.portName | string | `"http-metrics"` | Metrics service port name |
|
| controller.metrics.service.portName | string | `"http-metrics"` | Metrics service port name |
|
||||||
| controller.metrics.service.servicePort | int | `8082` | Metrics service port |
|
| controller.metrics.service.servicePort | int | `8082` | Metrics service port |
|
||||||
|
| controller.metrics.service.type | string | `"ClusterIP"` | Metrics service type |
|
||||||
| controller.metrics.serviceMonitor.additionalLabels | object | `{}` | Prometheus ServiceMonitor labels |
|
| controller.metrics.serviceMonitor.additionalLabels | object | `{}` | Prometheus ServiceMonitor labels |
|
||||||
| controller.metrics.serviceMonitor.annotations | object | `{}` | Prometheus ServiceMonitor annotations |
|
| controller.metrics.serviceMonitor.annotations | object | `{}` | Prometheus ServiceMonitor annotations |
|
||||||
| controller.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
| controller.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
||||||
|
@ -590,6 +594,7 @@ NAME: my-release
|
||||||
| repoServer.image.tag | string | `""` (defaults to global.image.tag) | Tag to use for the repo server |
|
| repoServer.image.tag | string | `""` (defaults to global.image.tag) | Tag to use for the repo server |
|
||||||
| repoServer.imagePullSecrets | list | `[]` (defaults to global.imagePullSecrets) | Secrets with credentials to pull images from a private registry |
|
| repoServer.imagePullSecrets | list | `[]` (defaults to global.imagePullSecrets) | Secrets with credentials to pull images from a private registry |
|
||||||
| repoServer.initContainers | list | `[]` | Init containers to add to the repo server pods |
|
| repoServer.initContainers | list | `[]` | Init containers to add to the repo server pods |
|
||||||
|
| repoServer.lifecycle | object | `{}` | Specify postStart and preStop lifecycle hooks for your argo-repo-server container |
|
||||||
| repoServer.livenessProbe.failureThreshold | int | `3` | Minimum consecutive failures for the [probe] to be considered failed after having succeeded |
|
| repoServer.livenessProbe.failureThreshold | int | `3` | Minimum consecutive failures for the [probe] to be considered failed after having succeeded |
|
||||||
| repoServer.livenessProbe.initialDelaySeconds | int | `10` | Number of seconds after the container has started before [probe] is initiated |
|
| repoServer.livenessProbe.initialDelaySeconds | int | `10` | Number of seconds after the container has started before [probe] is initiated |
|
||||||
| repoServer.livenessProbe.periodSeconds | int | `10` | How often (in seconds) to perform the [probe] |
|
| repoServer.livenessProbe.periodSeconds | int | `10` | How often (in seconds) to perform the [probe] |
|
||||||
|
@ -597,9 +602,11 @@ NAME: my-release
|
||||||
| repoServer.livenessProbe.timeoutSeconds | int | `1` | Number of seconds after which the [probe] times out |
|
| repoServer.livenessProbe.timeoutSeconds | int | `1` | Number of seconds after which the [probe] times out |
|
||||||
| repoServer.metrics.enabled | bool | `false` | Deploy metrics service |
|
| repoServer.metrics.enabled | bool | `false` | Deploy metrics service |
|
||||||
| repoServer.metrics.service.annotations | object | `{}` | Metrics service annotations |
|
| repoServer.metrics.service.annotations | object | `{}` | Metrics service annotations |
|
||||||
|
| repoServer.metrics.service.clusterIP | string | `""` | Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) |
|
||||||
| repoServer.metrics.service.labels | object | `{}` | Metrics service labels |
|
| repoServer.metrics.service.labels | object | `{}` | Metrics service labels |
|
||||||
| repoServer.metrics.service.portName | string | `"http-metrics"` | Metrics service port name |
|
| repoServer.metrics.service.portName | string | `"http-metrics"` | Metrics service port name |
|
||||||
| repoServer.metrics.service.servicePort | int | `8084` | Metrics service port |
|
| repoServer.metrics.service.servicePort | int | `8084` | Metrics service port |
|
||||||
|
| repoServer.metrics.service.type | string | `"ClusterIP"` | Metrics service type |
|
||||||
| repoServer.metrics.serviceMonitor.additionalLabels | object | `{}` | Prometheus ServiceMonitor labels |
|
| repoServer.metrics.serviceMonitor.additionalLabels | object | `{}` | Prometheus ServiceMonitor labels |
|
||||||
| repoServer.metrics.serviceMonitor.annotations | object | `{}` | Prometheus ServiceMonitor annotations |
|
| repoServer.metrics.serviceMonitor.annotations | object | `{}` | Prometheus ServiceMonitor annotations |
|
||||||
| repoServer.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
| repoServer.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
||||||
|
@ -731,9 +738,11 @@ NAME: my-release
|
||||||
| server.livenessProbe.timeoutSeconds | int | `1` | Number of seconds after which the [probe] times out |
|
| server.livenessProbe.timeoutSeconds | int | `1` | Number of seconds after which the [probe] times out |
|
||||||
| server.metrics.enabled | bool | `false` | Deploy metrics service |
|
| server.metrics.enabled | bool | `false` | Deploy metrics service |
|
||||||
| server.metrics.service.annotations | object | `{}` | Metrics service annotations |
|
| server.metrics.service.annotations | object | `{}` | Metrics service annotations |
|
||||||
|
| server.metrics.service.clusterIP | string | `""` | Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) |
|
||||||
| server.metrics.service.labels | object | `{}` | Metrics service labels |
|
| server.metrics.service.labels | object | `{}` | Metrics service labels |
|
||||||
| server.metrics.service.portName | string | `"http-metrics"` | Metrics service port name |
|
| server.metrics.service.portName | string | `"http-metrics"` | Metrics service port name |
|
||||||
| server.metrics.service.servicePort | int | `8083` | Metrics service port |
|
| server.metrics.service.servicePort | int | `8083` | Metrics service port |
|
||||||
|
| server.metrics.service.type | string | `"ClusterIP"` | Metrics service type |
|
||||||
| server.metrics.serviceMonitor.additionalLabels | object | `{}` | Prometheus ServiceMonitor labels |
|
| server.metrics.serviceMonitor.additionalLabels | object | `{}` | Prometheus ServiceMonitor labels |
|
||||||
| server.metrics.serviceMonitor.annotations | object | `{}` | Prometheus ServiceMonitor annotations |
|
| server.metrics.serviceMonitor.annotations | object | `{}` | Prometheus ServiceMonitor annotations |
|
||||||
| server.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
| server.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
||||||
|
@ -1016,6 +1025,19 @@ If you want to use an existing Redis (eg. a managed service from a cloud provide
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| applicationSet.affinity | object | `{}` (defaults to global.affinity preset) | Assign custom [affinity] rules |
|
| applicationSet.affinity | object | `{}` (defaults to global.affinity preset) | Assign custom [affinity] rules |
|
||||||
| applicationSet.args | object | `{}` | DEPRECATED - ApplicationSet controller command line flags |
|
| applicationSet.args | object | `{}` | DEPRECATED - ApplicationSet controller command line flags |
|
||||||
|
| applicationSet.certificate.additionalHosts | list | `[]` | Certificate Subject Alternate Names (SANs) |
|
||||||
|
| applicationSet.certificate.domain | string | `"argocd.example.com"` | Certificate primary domain (commonName) |
|
||||||
|
| applicationSet.certificate.duration | string | `""` (defaults to 2160h = 90d if not specified) | The requested 'duration' (i.e. lifetime) of the certificate. |
|
||||||
|
| applicationSet.certificate.enabled | bool | `false` | Deploy a Certificate resource (requires cert-manager) |
|
||||||
|
| applicationSet.certificate.issuer.group | string | `""` | Certificate issuer group. Set if using an external issuer. Eg. `cert-manager.io` |
|
||||||
|
| applicationSet.certificate.issuer.kind | string | `""` | Certificate issuer kind. Either `Issuer` or `ClusterIssuer` |
|
||||||
|
| applicationSet.certificate.issuer.name | string | `""` | Certificate issuer name. Eg. `letsencrypt` |
|
||||||
|
| applicationSet.certificate.privateKey.algorithm | string | `"RSA"` | Algorithm used to generate certificate private key. One of: `RSA`, `Ed25519` or `ECDSA` |
|
||||||
|
| applicationSet.certificate.privateKey.encoding | string | `"PKCS1"` | The private key cryptography standards (PKCS) encoding for private key. Either: `PCKS1` or `PKCS8` |
|
||||||
|
| applicationSet.certificate.privateKey.rotationPolicy | string | `"Never"` | Rotation policy of private key when certificate is re-issued. Either: `Never` or `Always` |
|
||||||
|
| applicationSet.certificate.privateKey.size | int | `2048` | Key bit size of the private key. If algorithm is set to `Ed25519`, size is ignored. |
|
||||||
|
| applicationSet.certificate.renewBefore | string | `""` (defaults to 360h = 15d if not specified) | How long before the expiry a certificate should be renewed. |
|
||||||
|
| applicationSet.certificate.secretName | string | `"argocd-application-controller-tls"` | The name of the Secret that will be automatically created and managed by this Certificate resource |
|
||||||
| applicationSet.containerPorts.metrics | int | `8080` | Metrics container port |
|
| applicationSet.containerPorts.metrics | int | `8080` | Metrics container port |
|
||||||
| applicationSet.containerPorts.probe | int | `8081` | Probe container port |
|
| applicationSet.containerPorts.probe | int | `8081` | Probe container port |
|
||||||
| applicationSet.containerPorts.webhook | int | `7000` | Webhook container port |
|
| applicationSet.containerPorts.webhook | int | `7000` | Webhook container port |
|
||||||
|
@ -1044,9 +1066,11 @@ If you want to use an existing Redis (eg. a managed service from a cloud provide
|
||||||
| applicationSet.livenessProbe.timeoutSeconds | int | `1` | Number of seconds after which the [probe] times out |
|
| applicationSet.livenessProbe.timeoutSeconds | int | `1` | Number of seconds after which the [probe] times out |
|
||||||
| applicationSet.metrics.enabled | bool | `false` | Deploy metrics service |
|
| applicationSet.metrics.enabled | bool | `false` | Deploy metrics service |
|
||||||
| applicationSet.metrics.service.annotations | object | `{}` | Metrics service annotations |
|
| applicationSet.metrics.service.annotations | object | `{}` | Metrics service annotations |
|
||||||
|
| applicationSet.metrics.service.clusterIP | string | `""` | Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) |
|
||||||
| applicationSet.metrics.service.labels | object | `{}` | Metrics service labels |
|
| applicationSet.metrics.service.labels | object | `{}` | Metrics service labels |
|
||||||
| applicationSet.metrics.service.portName | string | `"http-metrics"` | Metrics service port name |
|
| applicationSet.metrics.service.portName | string | `"http-metrics"` | Metrics service port name |
|
||||||
| applicationSet.metrics.service.servicePort | int | `8085` | Metrics service port |
|
| applicationSet.metrics.service.servicePort | int | `8085` | Metrics service port |
|
||||||
|
| applicationSet.metrics.service.type | string | `"ClusterIP"` | Metrics service type |
|
||||||
| applicationSet.metrics.serviceMonitor.additionalLabels | object | `{}` | Prometheus ServiceMonitor labels |
|
| applicationSet.metrics.serviceMonitor.additionalLabels | object | `{}` | Prometheus ServiceMonitor labels |
|
||||||
| applicationSet.metrics.serviceMonitor.annotations | object | `{}` | Prometheus ServiceMonitor annotations |
|
| applicationSet.metrics.serviceMonitor.annotations | object | `{}` | Prometheus ServiceMonitor annotations |
|
||||||
| applicationSet.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
| applicationSet.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
||||||
|
@ -1079,6 +1103,7 @@ If you want to use an existing Redis (eg. a managed service from a cloud provide
|
||||||
| applicationSet.service.labels | object | `{}` | ApplicationSet service labels |
|
| applicationSet.service.labels | object | `{}` | ApplicationSet service labels |
|
||||||
| applicationSet.service.port | int | `7000` | ApplicationSet service port |
|
| applicationSet.service.port | int | `7000` | ApplicationSet service port |
|
||||||
| applicationSet.service.portName | string | `"webhook"` | ApplicationSet service port name |
|
| applicationSet.service.portName | string | `"webhook"` | ApplicationSet service port name |
|
||||||
|
| applicationSet.service.type | string | `"ClusterIP"` | ApplicationSet service type |
|
||||||
| applicationSet.serviceAccount.annotations | object | `{}` | Annotations applied to created service account |
|
| applicationSet.serviceAccount.annotations | object | `{}` | Annotations applied to created service account |
|
||||||
| applicationSet.serviceAccount.automountServiceAccountToken | bool | `true` | Automount API credentials for the Service Account |
|
| applicationSet.serviceAccount.automountServiceAccountToken | bool | `true` | Automount API credentials for the Service Account |
|
||||||
| applicationSet.serviceAccount.create | bool | `true` | Create ApplicationSet controller service account |
|
| applicationSet.serviceAccount.create | bool | `true` | Create ApplicationSet controller service account |
|
||||||
|
@ -1127,8 +1152,10 @@ If you want to use an existing Redis (eg. a managed service from a cloud provide
|
||||||
| notifications.metrics.enabled | bool | `false` | Enables prometheus metrics server |
|
| notifications.metrics.enabled | bool | `false` | Enables prometheus metrics server |
|
||||||
| notifications.metrics.port | int | `9001` | Metrics port |
|
| notifications.metrics.port | int | `9001` | Metrics port |
|
||||||
| notifications.metrics.service.annotations | object | `{}` | Metrics service annotations |
|
| notifications.metrics.service.annotations | object | `{}` | Metrics service annotations |
|
||||||
|
| notifications.metrics.service.clusterIP | string | `""` | Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) |
|
||||||
| notifications.metrics.service.labels | object | `{}` | Metrics service labels |
|
| notifications.metrics.service.labels | object | `{}` | Metrics service labels |
|
||||||
| notifications.metrics.service.portName | string | `"http-metrics"` | Metrics service port name |
|
| notifications.metrics.service.portName | string | `"http-metrics"` | Metrics service port name |
|
||||||
|
| notifications.metrics.service.type | string | `"ClusterIP"` | Metrics service type |
|
||||||
| notifications.metrics.serviceMonitor.additionalLabels | object | `{}` | Prometheus ServiceMonitor labels |
|
| notifications.metrics.serviceMonitor.additionalLabels | object | `{}` | Prometheus ServiceMonitor labels |
|
||||||
| notifications.metrics.serviceMonitor.annotations | object | `{}` | Prometheus ServiceMonitor annotations |
|
| notifications.metrics.serviceMonitor.annotations | object | `{}` | Prometheus ServiceMonitor annotations |
|
||||||
| notifications.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
| notifications.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
||||||
|
|
|
@ -9,13 +9,21 @@ metadata:
|
||||||
{{- with .Values.controller.metrics.service.labels }}
|
{{- with .Values.controller.metrics.service.labels }}
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.controller.metrics.service.annotations }}
|
{{- if or .Values.controller.metrics.service.annotations .Values.global.addPrometheusAnnotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- range $key, $value := . }}
|
{{- if .Values.global.addPrometheusAnnotations }}
|
||||||
|
prometheus.io/port: {{ .Values.controller.metrics.service.servicePort | quote }}
|
||||||
|
prometheus.io/scrape: "true"
|
||||||
|
{{- end }}
|
||||||
|
{{- range $key, $value := .Values.controller.metrics.service.annotations }}
|
||||||
{{ $key }}: {{ $value | quote }}
|
{{ $key }}: {{ $value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
type: {{ .Values.controller.metrics.service.type }}
|
||||||
|
{{- if and .Values.controller.metrics.service.clusterIP (eq .Values.controller.metrics.service.type "ClusterIP") }}
|
||||||
|
clusterIP: {{ .Values.controller.metrics.service.clusterIP }}
|
||||||
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
- name: {{ .Values.controller.metrics.service.portName }}
|
- name: {{ .Values.controller.metrics.service.portName }}
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
{{- if .Values.applicationSet.certificate.enabled -}}
|
||||||
|
apiVersion: {{ include "argo-cd.apiVersion.cert-manager" . }}
|
||||||
|
kind: Certificate
|
||||||
|
metadata:
|
||||||
|
name: {{ template "argo-cd.applicationSet.fullname" . }}
|
||||||
|
namespace: {{ .Release.Namespace | quote }}
|
||||||
|
labels:
|
||||||
|
{{- include "argo-cd.labels" (dict "context" . "component" .Values.applicationSet.name "name" .Values.applicationSet.name) | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
secretName: {{ .Values.applicationSet.certificate.secretName }}
|
||||||
|
commonName: {{ .Values.applicationSet.certificate.domain | quote }}
|
||||||
|
dnsNames:
|
||||||
|
- {{ .Values.applicationSet.certificate.domain | quote }}
|
||||||
|
{{- range .Values.applicationSet.certificate.additionalHosts }}
|
||||||
|
- {{ . | quote }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.applicationSet.certificate.duration }}
|
||||||
|
duration: {{ . | quote }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.applicationSet.certificate.renewBefore }}
|
||||||
|
renewBefore: {{ . | quote }}
|
||||||
|
{{- end }}
|
||||||
|
issuerRef:
|
||||||
|
{{- with .Values.applicationSet.certificate.issuer.group }}
|
||||||
|
group: {{ . | quote }}
|
||||||
|
{{- end }}
|
||||||
|
kind: {{ .Values.applicationSet.certificate.issuer.kind | quote }}
|
||||||
|
name: {{ .Values.applicationSet.certificate.issuer.name | quote }}
|
||||||
|
{{- with .Values.applicationSet.certificate.privateKey }}
|
||||||
|
privateKey:
|
||||||
|
{{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
|
@ -9,13 +9,21 @@ metadata:
|
||||||
{{- with .Values.applicationSet.metrics.service.labels }}
|
{{- with .Values.applicationSet.metrics.service.labels }}
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.applicationSet.metrics.service.annotations }}
|
{{- if or .Values.applicationSet.metrics.service.annotations .Values.global.addPrometheusAnnotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- range $key, $value := . }}
|
{{- if .Values.global.addPrometheusAnnotations }}
|
||||||
|
prometheus.io/port: {{ .Values.applicationSet.metrics.service.servicePort | quote }}
|
||||||
|
prometheus.io/scrape: "true"
|
||||||
|
{{- end }}
|
||||||
|
{{- range $key, $value := .Values.applicationSet.metrics.service.annotations }}
|
||||||
{{ $key }}: {{ $value | quote }}
|
{{ $key }}: {{ $value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
type: {{ .Values.applicationSet.metrics.service.type }}
|
||||||
|
{{- if and .Values.applicationSet.metrics.service.clusterIP (eq .Values.applicationSet.metrics.service.type "ClusterIP") }}
|
||||||
|
clusterIP: {{ .Values.applicationSet.metrics.service.clusterIP }}
|
||||||
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
- name: {{ .Values.applicationSet.metrics.service.portName }}
|
- name: {{ .Values.applicationSet.metrics.service.portName }}
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
|
@ -16,6 +16,7 @@ metadata:
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
type: {{ .Values.applicationSet.service.type }}
|
||||||
ports:
|
ports:
|
||||||
- name: {{ .Values.applicationSet.service.portName }}
|
- name: {{ .Values.applicationSet.service.portName }}
|
||||||
port: {{ .Values.applicationSet.service.port }}
|
port: {{ .Values.applicationSet.service.port }}
|
||||||
|
|
|
@ -9,13 +9,21 @@ metadata:
|
||||||
{{- with .Values.notifications.metrics.service.labels }}
|
{{- with .Values.notifications.metrics.service.labels }}
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.notifications.metrics.service.annotations }}
|
{{- if or .Values.notifications.metrics.service.annotations .Values.global.addPrometheusAnnotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- range $key, $value := . }}
|
{{- if .Values.global.addPrometheusAnnotations }}
|
||||||
|
prometheus.io/port: {{ .Values.notifications.metrics.port | quote }}
|
||||||
|
prometheus.io/scrape: "true"
|
||||||
|
{{- end }}
|
||||||
|
{{- range $key, $value := .Values.notifications.metrics.service.annotations }}
|
||||||
{{ $key }}: {{ $value | quote }}
|
{{ $key }}: {{ $value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
type: {{ .Values.notifications.metrics.service.type }}
|
||||||
|
{{- if and .Values.notifications.metrics.service.clusterIP (eq .Values.notifications.metrics.service.type "ClusterIP") }}
|
||||||
|
clusterIP: {{ .Values.notifications.metrics.service.clusterIP }}
|
||||||
|
{{- end }}
|
||||||
selector:
|
selector:
|
||||||
{{- include "argo-cd.selectorLabels" (dict "context" . "name" .Values.notifications.name) | nindent 6 }}
|
{{- include "argo-cd.selectorLabels" (dict "context" . "name" .Values.notifications.name) | nindent 6 }}
|
||||||
ports:
|
ports:
|
||||||
|
|
|
@ -275,6 +275,10 @@ spec:
|
||||||
{{- toYaml .Values.repoServer.resources | nindent 10 }}
|
{{- toYaml .Values.repoServer.resources | nindent 10 }}
|
||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.repoServer.containerSecurityContext | nindent 10 }}
|
{{- toYaml .Values.repoServer.containerSecurityContext | nindent 10 }}
|
||||||
|
{{- with .Values.repoServer.lifecycle }}
|
||||||
|
lifecycle:
|
||||||
|
{{- toYaml . | nindent 10 }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.repoServer.extraContainers }}
|
{{- with .Values.repoServer.extraContainers }}
|
||||||
{{- tpl (toYaml .) $ | nindent 6 }}
|
{{- tpl (toYaml .) $ | nindent 6 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -9,13 +9,21 @@ metadata:
|
||||||
{{- with .Values.repoServer.metrics.service.labels }}
|
{{- with .Values.repoServer.metrics.service.labels }}
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.repoServer.metrics.service.annotations }}
|
{{- if or .Values.repoServer.metrics.service.annotations .Values.global.addPrometheusAnnotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- range $key, $value := . }}
|
{{- if .Values.global.addPrometheusAnnotations }}
|
||||||
|
prometheus.io/port: {{ .Values.repoServer.metrics.service.servicePort | quote }}
|
||||||
|
prometheus.io/scrape: "true"
|
||||||
|
{{- end }}
|
||||||
|
{{- range $key, $value := .Values.repoServer.metrics.service.annotations }}
|
||||||
{{ $key }}: {{ $value | quote }}
|
{{ $key }}: {{ $value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
type: {{ .Values.repoServer.metrics.service.type }}
|
||||||
|
{{- if and .Values.repoServer.metrics.service.clusterIP (eq .Values.repoServer.metrics.service.type "ClusterIP") }}
|
||||||
|
clusterIP: {{ .Values.repoServer.metrics.service.clusterIP }}
|
||||||
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
- name: {{ .Values.repoServer.metrics.service.portName }}
|
- name: {{ .Values.repoServer.metrics.service.portName }}
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
|
@ -9,13 +9,21 @@ metadata:
|
||||||
{{- with .Values.server.metrics.service.labels }}
|
{{- with .Values.server.metrics.service.labels }}
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.server.metrics.service.annotations }}
|
{{- if or .Values.server.metrics.service.annotations .Values.global.addPrometheusAnnotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- range $key, $value := . }}
|
{{- if .Values.global.addPrometheusAnnotations }}
|
||||||
|
prometheus.io/port: {{ .Values.server.metrics.service.servicePort | quote }}
|
||||||
|
prometheus.io/scrape: "true"
|
||||||
|
{{- end }}
|
||||||
|
{{- range $key, $value := .Values.server.metrics.service.annotations }}
|
||||||
{{ $key }}: {{ $value | quote }}
|
{{ $key }}: {{ $value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
type: {{ .Values.server.metrics.service.type }}
|
||||||
|
{{- if and .Values.server.metrics.service.clusterIP (eq .Values.server.metrics.service.type "ClusterIP") }}
|
||||||
|
clusterIP: {{ .Values.server.metrics.service.clusterIP }}
|
||||||
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
- name: {{ .Values.server.metrics.service.portName }}
|
- name: {{ .Values.server.metrics.service.portName }}
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
|
@ -12,6 +12,9 @@ metadata:
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: applications.argoproj.io
|
app.kubernetes.io/name: applications.argoproj.io
|
||||||
app.kubernetes.io/part-of: argocd
|
app.kubernetes.io/part-of: argocd
|
||||||
|
{{- with .Values.crds.additionalLabels }}
|
||||||
|
{{- toYaml . | nindent 4}}
|
||||||
|
{{- end }}
|
||||||
name: applications.argoproj.io
|
name: applications.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
group: argoproj.io
|
group: argoproj.io
|
||||||
|
|
|
@ -12,6 +12,9 @@ metadata:
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: applicationsets.argoproj.io
|
app.kubernetes.io/name: applicationsets.argoproj.io
|
||||||
app.kubernetes.io/part-of: argocd
|
app.kubernetes.io/part-of: argocd
|
||||||
|
{{- with .Values.crds.additionalLabels }}
|
||||||
|
{{- toYaml . | nindent 4}}
|
||||||
|
{{- end }}
|
||||||
name: applicationsets.argoproj.io
|
name: applicationsets.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
group: argoproj.io
|
group: argoproj.io
|
||||||
|
|
|
@ -13,6 +13,9 @@ metadata:
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: argocdextensions.argoproj.io
|
app.kubernetes.io/name: argocdextensions.argoproj.io
|
||||||
app.kubernetes.io/part-of: argocd
|
app.kubernetes.io/part-of: argocd
|
||||||
|
{{- with .Values.crds.additionalLabels }}
|
||||||
|
{{- toYaml . | nindent 4}}
|
||||||
|
{{- end }}
|
||||||
name: argocdextensions.argoproj.io
|
name: argocdextensions.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
group: argoproj.io
|
group: argoproj.io
|
||||||
|
|
|
@ -12,6 +12,9 @@ metadata:
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: appprojects.argoproj.io
|
app.kubernetes.io/name: appprojects.argoproj.io
|
||||||
app.kubernetes.io/part-of: argocd
|
app.kubernetes.io/part-of: argocd
|
||||||
|
{{- with .Values.crds.additionalLabels }}
|
||||||
|
{{- toYaml . | nindent 4}}
|
||||||
|
{{- end }}
|
||||||
name: appprojects.argoproj.io
|
name: appprojects.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
group: argoproj.io
|
group: argoproj.io
|
||||||
|
|
|
@ -10,16 +10,20 @@ metadata:
|
||||||
{{- with .Values.redis.metrics.service.labels }}
|
{{- with .Values.redis.metrics.service.labels }}
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.redis.metrics.service.annotations }}
|
{{- if or .Values.redis.metrics.service.annotations .Values.global.addPrometheusAnnotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- range $key, $value := . }}
|
{{- if .Values.global.addPrometheusAnnotations }}
|
||||||
|
prometheus.io/port: {{ .Values.redis.metrics.service.servicePort | quote }}
|
||||||
|
prometheus.io/scrape: "true"
|
||||||
|
{{- end }}
|
||||||
|
{{- range $key, $value := .Values.redis.metrics.service.annotations }}
|
||||||
{{ $key }}: {{ $value | quote }}
|
{{ $key }}: {{ $value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
type: {{ .Values.redis.metrics.service.type }}
|
type: {{ .Values.redis.metrics.service.type }}
|
||||||
{{- with .Values.redis.metrics.service.clusterIP }}
|
{{- if and .Values.redis.metrics.service.clusterIP (eq .Values.redis.metrics.service.type "ClusterIP") }}
|
||||||
clusterIP: {{ . }}
|
clusterIP: {{ .Values.redis.metrics.service.clusterIP }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
- name: {{ .Values.redis.metrics.service.portName }}
|
- name: {{ .Values.redis.metrics.service.portName }}
|
||||||
|
|
|
@ -38,6 +38,8 @@ crds:
|
||||||
keep: true
|
keep: true
|
||||||
# -- Annotations to be added to all CRDs
|
# -- Annotations to be added to all CRDs
|
||||||
annotations: {}
|
annotations: {}
|
||||||
|
# -- Addtional labels to be added to all CRDs
|
||||||
|
additionalLabels: {}
|
||||||
|
|
||||||
## Globally shared configuration
|
## Globally shared configuration
|
||||||
global:
|
global:
|
||||||
|
@ -79,6 +81,9 @@ global:
|
||||||
# -- Labels for the all deployed pods
|
# -- Labels for the all deployed pods
|
||||||
podLabels: {}
|
podLabels: {}
|
||||||
|
|
||||||
|
# -- Add Prometheus scrape annotations to all metrics services. This can be used as an alternative to the ServiceMonitors.
|
||||||
|
addPrometheusAnnotations: false
|
||||||
|
|
||||||
# -- Toggle and define pod-level security context.
|
# -- Toggle and define pod-level security context.
|
||||||
# @default -- `{}` (See [values.yaml])
|
# @default -- `{}` (See [values.yaml])
|
||||||
securityContext: {}
|
securityContext: {}
|
||||||
|
@ -310,6 +315,8 @@ configs:
|
||||||
# -- Known hosts to be added to the known host list by default.
|
# -- Known hosts to be added to the known host list by default.
|
||||||
# @default -- See [values.yaml]
|
# @default -- See [values.yaml]
|
||||||
knownHosts: |
|
knownHosts: |
|
||||||
|
bitbucket.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIazEu89wgQZ4bqs3d63QSMzYVa0MuJ2e2gKTKqu+UUO
|
||||||
|
bitbucket.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPIQmuzMBuKdWeF4+a2sjSSpBK0iqitSQ+5BM9KhpexuGt20JpTVM7u5BDZngncgrqDMbWdxMWWOGtZ9UgbqgZE=
|
||||||
bitbucket.org ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAubiN81eDcafrgMeLzaFPsw2kNvEcqTKl/VqLat/MaB33pZy0y3rJZtnqwR2qOOvbwKZYKiEO1O6VqNEBxKvJJelCq0dTXWT5pbO2gDXC6h6QDXCaHo6pOHGPUy+YBaGQRGuSusMEASYiWunYN0vCAI8QaXnWMXNMdFP3jHAJH0eDsoiGnLPBlBp4TNm6rYI74nMzgz3B9IikW4WVK+dc8KZJZWYjAuORU3jc1c/NPskD2ASinf8v3xnfXeukU0sJ5N6m5E8VLjObPEO+mN2t/FZTMZLiFqPWc/ALSqnMnnhwrNi2rbfg/rd/IpL8Le3pSBne8+seeFVBoGqzHM9yXw==
|
bitbucket.org ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAubiN81eDcafrgMeLzaFPsw2kNvEcqTKl/VqLat/MaB33pZy0y3rJZtnqwR2qOOvbwKZYKiEO1O6VqNEBxKvJJelCq0dTXWT5pbO2gDXC6h6QDXCaHo6pOHGPUy+YBaGQRGuSusMEASYiWunYN0vCAI8QaXnWMXNMdFP3jHAJH0eDsoiGnLPBlBp4TNm6rYI74nMzgz3B9IikW4WVK+dc8KZJZWYjAuORU3jc1c/NPskD2ASinf8v3xnfXeukU0sJ5N6m5E8VLjObPEO+mN2t/FZTMZLiFqPWc/ALSqnMnnhwrNi2rbfg/rd/IpL8Le3pSBne8+seeFVBoGqzHM9yXw==
|
||||||
github.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg=
|
github.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg=
|
||||||
github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl
|
github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl
|
||||||
|
@ -762,6 +769,10 @@ controller:
|
||||||
# -- Additional labels
|
# -- Additional labels
|
||||||
labels: []
|
labels: []
|
||||||
service:
|
service:
|
||||||
|
# -- Metrics service type
|
||||||
|
type: ClusterIP
|
||||||
|
# -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
|
||||||
|
clusterIP: ""
|
||||||
# -- Metrics service annotations
|
# -- Metrics service annotations
|
||||||
annotations: {}
|
annotations: {}
|
||||||
# -- Metrics service labels
|
# -- Metrics service labels
|
||||||
|
@ -1773,6 +1784,10 @@ server:
|
||||||
# -- Deploy metrics service
|
# -- Deploy metrics service
|
||||||
enabled: false
|
enabled: false
|
||||||
service:
|
service:
|
||||||
|
# -- Metrics service type
|
||||||
|
type: ClusterIP
|
||||||
|
# -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
|
||||||
|
clusterIP: ""
|
||||||
# -- Metrics service annotations
|
# -- Metrics service annotations
|
||||||
annotations: {}
|
annotations: {}
|
||||||
# -- Metrics service labels
|
# -- Metrics service labels
|
||||||
|
@ -2046,6 +2061,9 @@ repoServer:
|
||||||
# - secretRef:
|
# - secretRef:
|
||||||
# name: secret-name
|
# name: secret-name
|
||||||
|
|
||||||
|
# -- Specify postStart and preStop lifecycle hooks for your argo-repo-server container
|
||||||
|
lifecycle: {}
|
||||||
|
|
||||||
# -- Additional containers to be added to the repo server pod
|
# -- Additional containers to be added to the repo server pod
|
||||||
## Ref: https://argo-cd.readthedocs.io/en/stable/user-guide/config-management-plugins/
|
## Ref: https://argo-cd.readthedocs.io/en/stable/user-guide/config-management-plugins/
|
||||||
## Note: Supports use of custom Helm templates
|
## Note: Supports use of custom Helm templates
|
||||||
|
@ -2241,6 +2259,10 @@ repoServer:
|
||||||
# -- Deploy metrics service
|
# -- Deploy metrics service
|
||||||
enabled: false
|
enabled: false
|
||||||
service:
|
service:
|
||||||
|
# -- Metrics service type
|
||||||
|
type: ClusterIP
|
||||||
|
# -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
|
||||||
|
clusterIP: ""
|
||||||
# -- Metrics service annotations
|
# -- Metrics service annotations
|
||||||
annotations: {}
|
annotations: {}
|
||||||
# -- Metrics service labels
|
# -- Metrics service labels
|
||||||
|
@ -2394,6 +2416,10 @@ applicationSet:
|
||||||
# -- Deploy metrics service
|
# -- Deploy metrics service
|
||||||
enabled: false
|
enabled: false
|
||||||
service:
|
service:
|
||||||
|
# -- Metrics service type
|
||||||
|
type: ClusterIP
|
||||||
|
# -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
|
||||||
|
clusterIP: ""
|
||||||
# -- Metrics service annotations
|
# -- Metrics service annotations
|
||||||
annotations: {}
|
annotations: {}
|
||||||
# -- Metrics service labels
|
# -- Metrics service labels
|
||||||
|
@ -2432,6 +2458,8 @@ applicationSet:
|
||||||
annotations: {}
|
annotations: {}
|
||||||
# -- ApplicationSet service labels
|
# -- ApplicationSet service labels
|
||||||
labels: {}
|
labels: {}
|
||||||
|
# -- ApplicationSet service type
|
||||||
|
type: ClusterIP
|
||||||
# -- ApplicationSet service port
|
# -- ApplicationSet service port
|
||||||
port: 7000
|
port: 7000
|
||||||
# -- ApplicationSet service port name
|
# -- ApplicationSet service port name
|
||||||
|
@ -2600,6 +2628,45 @@ applicationSet:
|
||||||
# hosts:
|
# hosts:
|
||||||
# - argocd-applicationset.example.com
|
# - argocd-applicationset.example.com
|
||||||
|
|
||||||
|
# TLS certificate configuration via cert-manager
|
||||||
|
## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#tls-configuration
|
||||||
|
certificate:
|
||||||
|
# -- Deploy a Certificate resource (requires cert-manager)
|
||||||
|
enabled: false
|
||||||
|
# -- The name of the Secret that will be automatically created and managed by this Certificate resource
|
||||||
|
secretName: argocd-application-controller-tls
|
||||||
|
# -- Certificate primary domain (commonName)
|
||||||
|
domain: argocd.example.com
|
||||||
|
# -- Certificate Subject Alternate Names (SANs)
|
||||||
|
additionalHosts: []
|
||||||
|
# -- The requested 'duration' (i.e. lifetime) of the certificate.
|
||||||
|
# @default -- `""` (defaults to 2160h = 90d if not specified)
|
||||||
|
## Ref: https://cert-manager.io/docs/usage/certificate/#renewal
|
||||||
|
duration: ""
|
||||||
|
# -- How long before the expiry a certificate should be renewed.
|
||||||
|
# @default -- `""` (defaults to 360h = 15d if not specified)
|
||||||
|
## Ref: https://cert-manager.io/docs/usage/certificate/#renewal
|
||||||
|
renewBefore: ""
|
||||||
|
# Certificate issuer
|
||||||
|
## Ref: https://cert-manager.io/docs/concepts/issuer
|
||||||
|
issuer:
|
||||||
|
# -- Certificate issuer group. Set if using an external issuer. Eg. `cert-manager.io`
|
||||||
|
group: ""
|
||||||
|
# -- Certificate issuer kind. Either `Issuer` or `ClusterIssuer`
|
||||||
|
kind: ""
|
||||||
|
# -- Certificate issuer name. Eg. `letsencrypt`
|
||||||
|
name: ""
|
||||||
|
# Private key of the certificate
|
||||||
|
privateKey:
|
||||||
|
# -- Rotation policy of private key when certificate is re-issued. Either: `Never` or `Always`
|
||||||
|
rotationPolicy: Never
|
||||||
|
# -- The private key cryptography standards (PKCS) encoding for private key. Either: `PCKS1` or `PKCS8`
|
||||||
|
encoding: PKCS1
|
||||||
|
# -- Algorithm used to generate certificate private key. One of: `RSA`, `Ed25519` or `ECDSA`
|
||||||
|
algorithm: RSA
|
||||||
|
# -- Key bit size of the private key. If algorithm is set to `Ed25519`, size is ignored.
|
||||||
|
size: 2048
|
||||||
|
|
||||||
## Notifications controller
|
## Notifications controller
|
||||||
notifications:
|
notifications:
|
||||||
# -- Enable notifications controller
|
# -- Enable notifications controller
|
||||||
|
@ -2713,6 +2780,10 @@ notifications:
|
||||||
# -- Metrics port
|
# -- Metrics port
|
||||||
port: 9001
|
port: 9001
|
||||||
service:
|
service:
|
||||||
|
# -- Metrics service type
|
||||||
|
type: ClusterIP
|
||||||
|
# -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP)
|
||||||
|
clusterIP: ""
|
||||||
# -- Metrics service annotations
|
# -- Metrics service annotations
|
||||||
annotations: {}
|
annotations: {}
|
||||||
# -- Metrics service labels
|
# -- Metrics service labels
|
||||||
|
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v1.7.6
|
appVersion: v1.7.6
|
||||||
description: A Helm chart for Argo Events, the event-driven workflow automation framework
|
description: A Helm chart for Argo Events, the event-driven workflow automation framework
|
||||||
name: argo-events
|
name: argo-events
|
||||||
version: 2.3.1
|
version: 2.3.3
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://avatars.githubusercontent.com/u/30269780?s=200&v=4
|
icon: https://avatars.githubusercontent.com/u/30269780?s=200&v=4
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -14,6 +14,9 @@ maintainers:
|
||||||
- name: argoproj
|
- name: argoproj
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
annotations:
|
annotations:
|
||||||
|
artifacthub.io/signKey: |
|
||||||
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: chore
|
- kind: added
|
||||||
description: Update chart icon
|
description: Introduce chart signing
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: v1.4.1
|
appVersion: v1.5.0
|
||||||
description: A Helm chart for Argo Rollouts
|
description: A Helm chart for Argo Rollouts
|
||||||
name: argo-rollouts
|
name: argo-rollouts
|
||||||
version: 2.27.0
|
version: 2.28.0
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -14,10 +14,13 @@ maintainers:
|
||||||
- name: argoproj
|
- name: argoproj
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
annotations:
|
annotations:
|
||||||
|
artifacthub.io/signKey: |
|
||||||
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
|
- kind: changed
|
||||||
|
description: Upgrade Argo Rollouts to v1.5.0
|
||||||
- kind: added
|
- kind: added
|
||||||
description: Allow extraObjects to contain string templates
|
description: Introduce chart signing
|
||||||
- kind: added
|
- kind: added
|
||||||
description: Ability to configure metrics and healthz ports
|
description: Ability to provide additional volumes and volumeMounts
|
||||||
- kind: added
|
|
||||||
description: Ability to provide additional volumes and volumeMounts
|
|
||||||
|
|
|
@ -87,6 +87,7 @@ For full list of changes please check ArtifactHub [changelog].
|
||||||
| controller.image.tag | string | `""` | Overrides the image tag (default is the chart appVersion) |
|
| controller.image.tag | string | `""` | Overrides the image tag (default is the chart appVersion) |
|
||||||
| controller.initContainers | list | `[]` | Init containers to add to the rollouts controller pod |
|
| controller.initContainers | list | `[]` | Init containers to add to the rollouts controller pod |
|
||||||
| controller.livenessProbe | object | See [values.yaml] | Configure liveness [probe] for the controller |
|
| controller.livenessProbe | object | See [values.yaml] | Configure liveness [probe] for the controller |
|
||||||
|
| controller.metricProviderPlugins | object | `{}` | Configures 3rd party metric providers for controller |
|
||||||
| controller.metrics.enabled | bool | `false` | Deploy metrics service |
|
| controller.metrics.enabled | bool | `false` | Deploy metrics service |
|
||||||
| controller.metrics.service.port | int | `8090` | |
|
| controller.metrics.service.port | int | `8090` | |
|
||||||
| controller.metrics.service.portName | string | `"metrics"` | |
|
| controller.metrics.service.portName | string | `"metrics"` | |
|
||||||
|
|
12
charts/argo-rollouts/templates/controller/configmap.yaml
Normal file
12
charts/argo-rollouts/templates/controller/configmap.yaml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: argo-rollouts-config
|
||||||
|
namespace: {{ .Release.Namespace | quote }}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/component: {{ .Values.controller.component }}
|
||||||
|
{{- include "argo-rollouts.labels" . | nindent 4 }}
|
||||||
|
data:
|
||||||
|
{{- with .Values.controller.metricProviderPlugins }}
|
||||||
|
{{- toYaml . | nindent 2 }}
|
||||||
|
{{- end }}
|
|
@ -188,6 +188,8 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
datadog:
|
datadog:
|
||||||
properties:
|
properties:
|
||||||
|
apiVersion:
|
||||||
|
type: string
|
||||||
interval:
|
interval:
|
||||||
type: string
|
type: string
|
||||||
query:
|
query:
|
||||||
|
@ -240,6 +242,51 @@ spec:
|
||||||
parallelism:
|
parallelism:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
podFailurePolicy:
|
||||||
|
properties:
|
||||||
|
rules:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
action:
|
||||||
|
type: string
|
||||||
|
onExitCodes:
|
||||||
|
properties:
|
||||||
|
containerName:
|
||||||
|
type: string
|
||||||
|
operator:
|
||||||
|
type: string
|
||||||
|
values:
|
||||||
|
items:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: set
|
||||||
|
required:
|
||||||
|
- operator
|
||||||
|
- values
|
||||||
|
type: object
|
||||||
|
onPodConditions:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
status:
|
||||||
|
type: string
|
||||||
|
type:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- status
|
||||||
|
- type
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
|
required:
|
||||||
|
- action
|
||||||
|
- onPodConditions
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
|
required:
|
||||||
|
- rules
|
||||||
|
type: object
|
||||||
selector:
|
selector:
|
||||||
properties:
|
properties:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
|
@ -1832,6 +1879,8 @@ spec:
|
||||||
type: boolean
|
type: boolean
|
||||||
hostPID:
|
hostPID:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
hostUsers:
|
||||||
|
type: boolean
|
||||||
hostname:
|
hostname:
|
||||||
type: string
|
type: string
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
@ -2579,12 +2628,21 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
|
matchLabelKeys:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
maxSkew:
|
maxSkew:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
minDomains:
|
minDomains:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
nodeAffinityPolicy:
|
||||||
|
type: string
|
||||||
|
nodeTaintsPolicy:
|
||||||
|
type: string
|
||||||
topologyKey:
|
topologyKey:
|
||||||
type: string
|
type: string
|
||||||
whenUnsatisfiable:
|
whenUnsatisfiable:
|
||||||
|
@ -2710,6 +2768,9 @@ spec:
|
||||||
required:
|
required:
|
||||||
- query
|
- query
|
||||||
type: object
|
type: object
|
||||||
|
plugin:
|
||||||
|
type: object
|
||||||
|
x-kubernetes-preserve-unknown-fields: true
|
||||||
prometheus:
|
prometheus:
|
||||||
properties:
|
properties:
|
||||||
address:
|
address:
|
||||||
|
@ -2717,6 +2778,15 @@ spec:
|
||||||
query:
|
query:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
skywalking:
|
||||||
|
properties:
|
||||||
|
address:
|
||||||
|
type: string
|
||||||
|
interval:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
wavefront:
|
wavefront:
|
||||||
properties:
|
properties:
|
||||||
address:
|
address:
|
||||||
|
|
|
@ -184,6 +184,8 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
datadog:
|
datadog:
|
||||||
properties:
|
properties:
|
||||||
|
apiVersion:
|
||||||
|
type: string
|
||||||
interval:
|
interval:
|
||||||
type: string
|
type: string
|
||||||
query:
|
query:
|
||||||
|
@ -236,6 +238,51 @@ spec:
|
||||||
parallelism:
|
parallelism:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
podFailurePolicy:
|
||||||
|
properties:
|
||||||
|
rules:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
action:
|
||||||
|
type: string
|
||||||
|
onExitCodes:
|
||||||
|
properties:
|
||||||
|
containerName:
|
||||||
|
type: string
|
||||||
|
operator:
|
||||||
|
type: string
|
||||||
|
values:
|
||||||
|
items:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: set
|
||||||
|
required:
|
||||||
|
- operator
|
||||||
|
- values
|
||||||
|
type: object
|
||||||
|
onPodConditions:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
status:
|
||||||
|
type: string
|
||||||
|
type:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- status
|
||||||
|
- type
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
|
required:
|
||||||
|
- action
|
||||||
|
- onPodConditions
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
|
required:
|
||||||
|
- rules
|
||||||
|
type: object
|
||||||
selector:
|
selector:
|
||||||
properties:
|
properties:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
|
@ -1828,6 +1875,8 @@ spec:
|
||||||
type: boolean
|
type: boolean
|
||||||
hostPID:
|
hostPID:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
hostUsers:
|
||||||
|
type: boolean
|
||||||
hostname:
|
hostname:
|
||||||
type: string
|
type: string
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
@ -2575,12 +2624,21 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
|
matchLabelKeys:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
maxSkew:
|
maxSkew:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
minDomains:
|
minDomains:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
nodeAffinityPolicy:
|
||||||
|
type: string
|
||||||
|
nodeTaintsPolicy:
|
||||||
|
type: string
|
||||||
topologyKey:
|
topologyKey:
|
||||||
type: string
|
type: string
|
||||||
whenUnsatisfiable:
|
whenUnsatisfiable:
|
||||||
|
@ -2706,6 +2764,9 @@ spec:
|
||||||
required:
|
required:
|
||||||
- query
|
- query
|
||||||
type: object
|
type: object
|
||||||
|
plugin:
|
||||||
|
type: object
|
||||||
|
x-kubernetes-preserve-unknown-fields: true
|
||||||
prometheus:
|
prometheus:
|
||||||
properties:
|
properties:
|
||||||
address:
|
address:
|
||||||
|
@ -2713,6 +2774,15 @@ spec:
|
||||||
query:
|
query:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
skywalking:
|
||||||
|
properties:
|
||||||
|
address:
|
||||||
|
type: string
|
||||||
|
interval:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
wavefront:
|
wavefront:
|
||||||
properties:
|
properties:
|
||||||
address:
|
address:
|
||||||
|
|
|
@ -184,6 +184,8 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
datadog:
|
datadog:
|
||||||
properties:
|
properties:
|
||||||
|
apiVersion:
|
||||||
|
type: string
|
||||||
interval:
|
interval:
|
||||||
type: string
|
type: string
|
||||||
query:
|
query:
|
||||||
|
@ -236,6 +238,51 @@ spec:
|
||||||
parallelism:
|
parallelism:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
podFailurePolicy:
|
||||||
|
properties:
|
||||||
|
rules:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
action:
|
||||||
|
type: string
|
||||||
|
onExitCodes:
|
||||||
|
properties:
|
||||||
|
containerName:
|
||||||
|
type: string
|
||||||
|
operator:
|
||||||
|
type: string
|
||||||
|
values:
|
||||||
|
items:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: set
|
||||||
|
required:
|
||||||
|
- operator
|
||||||
|
- values
|
||||||
|
type: object
|
||||||
|
onPodConditions:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
status:
|
||||||
|
type: string
|
||||||
|
type:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- status
|
||||||
|
- type
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
|
required:
|
||||||
|
- action
|
||||||
|
- onPodConditions
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
|
required:
|
||||||
|
- rules
|
||||||
|
type: object
|
||||||
selector:
|
selector:
|
||||||
properties:
|
properties:
|
||||||
matchExpressions:
|
matchExpressions:
|
||||||
|
@ -1828,6 +1875,8 @@ spec:
|
||||||
type: boolean
|
type: boolean
|
||||||
hostPID:
|
hostPID:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
hostUsers:
|
||||||
|
type: boolean
|
||||||
hostname:
|
hostname:
|
||||||
type: string
|
type: string
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
@ -2575,12 +2624,21 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
|
matchLabelKeys:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
maxSkew:
|
maxSkew:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
minDomains:
|
minDomains:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
nodeAffinityPolicy:
|
||||||
|
type: string
|
||||||
|
nodeTaintsPolicy:
|
||||||
|
type: string
|
||||||
topologyKey:
|
topologyKey:
|
||||||
type: string
|
type: string
|
||||||
whenUnsatisfiable:
|
whenUnsatisfiable:
|
||||||
|
@ -2706,6 +2764,9 @@ spec:
|
||||||
required:
|
required:
|
||||||
- query
|
- query
|
||||||
type: object
|
type: object
|
||||||
|
plugin:
|
||||||
|
type: object
|
||||||
|
x-kubernetes-preserve-unknown-fields: true
|
||||||
prometheus:
|
prometheus:
|
||||||
properties:
|
properties:
|
||||||
address:
|
address:
|
||||||
|
@ -2713,6 +2774,15 @@ spec:
|
||||||
query:
|
query:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
skywalking:
|
||||||
|
properties:
|
||||||
|
address:
|
||||||
|
type: string
|
||||||
|
interval:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
wavefront:
|
wavefront:
|
||||||
properties:
|
properties:
|
||||||
address:
|
address:
|
||||||
|
|
|
@ -159,6 +159,9 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
service:
|
service:
|
||||||
|
properties:
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
template:
|
template:
|
||||||
properties:
|
properties:
|
||||||
|
@ -1727,6 +1730,8 @@ spec:
|
||||||
type: boolean
|
type: boolean
|
||||||
hostPID:
|
hostPID:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
hostUsers:
|
||||||
|
type: boolean
|
||||||
hostname:
|
hostname:
|
||||||
type: string
|
type: string
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
@ -2474,12 +2479,21 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
|
matchLabelKeys:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
maxSkew:
|
maxSkew:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
minDomains:
|
minDomains:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
nodeAffinityPolicy:
|
||||||
|
type: string
|
||||||
|
nodeTaintsPolicy:
|
||||||
|
type: string
|
||||||
topologyKey:
|
topologyKey:
|
||||||
type: string
|
type: string
|
||||||
whenUnsatisfiable:
|
whenUnsatisfiable:
|
||||||
|
|
|
@ -163,6 +163,17 @@ spec:
|
||||||
x-kubernetes-int-or-string: true
|
x-kubernetes-int-or-string: true
|
||||||
postPromotionAnalysis:
|
postPromotionAnalysis:
|
||||||
properties:
|
properties:
|
||||||
|
analysisRunMetadata:
|
||||||
|
properties:
|
||||||
|
annotations:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
labels:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: object
|
||||||
args:
|
args:
|
||||||
items:
|
items:
|
||||||
properties:
|
properties:
|
||||||
|
@ -220,6 +231,17 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
prePromotionAnalysis:
|
prePromotionAnalysis:
|
||||||
properties:
|
properties:
|
||||||
|
analysisRunMetadata:
|
||||||
|
properties:
|
||||||
|
annotations:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
labels:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: object
|
||||||
args:
|
args:
|
||||||
items:
|
items:
|
||||||
properties:
|
properties:
|
||||||
|
@ -307,6 +329,17 @@ spec:
|
||||||
type: integer
|
type: integer
|
||||||
analysis:
|
analysis:
|
||||||
properties:
|
properties:
|
||||||
|
analysisRunMetadata:
|
||||||
|
properties:
|
||||||
|
annotations:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
labels:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: object
|
||||||
args:
|
args:
|
||||||
items:
|
items:
|
||||||
properties:
|
properties:
|
||||||
|
@ -440,6 +473,17 @@ spec:
|
||||||
properties:
|
properties:
|
||||||
analysis:
|
analysis:
|
||||||
properties:
|
properties:
|
||||||
|
analysisRunMetadata:
|
||||||
|
properties:
|
||||||
|
annotations:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
labels:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: object
|
||||||
args:
|
args:
|
||||||
items:
|
items:
|
||||||
properties:
|
properties:
|
||||||
|
@ -580,6 +624,11 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
|
service:
|
||||||
|
properties:
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
specRef:
|
specRef:
|
||||||
type: string
|
type: string
|
||||||
weight:
|
weight:
|
||||||
|
@ -869,9 +918,14 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
stableIngress:
|
stableIngress:
|
||||||
type: string
|
type: string
|
||||||
required:
|
stableIngresses:
|
||||||
- stableIngress
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
type: object
|
type: object
|
||||||
|
plugins:
|
||||||
|
type: object
|
||||||
|
x-kubernetes-preserve-unknown-fields: true
|
||||||
smi:
|
smi:
|
||||||
properties:
|
properties:
|
||||||
rootService:
|
rootService:
|
||||||
|
@ -2456,6 +2510,8 @@ spec:
|
||||||
type: boolean
|
type: boolean
|
||||||
hostPID:
|
hostPID:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
hostUsers:
|
||||||
|
type: boolean
|
||||||
hostname:
|
hostname:
|
||||||
type: string
|
type: string
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
@ -3203,12 +3259,21 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
|
matchLabelKeys:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-type: atomic
|
||||||
maxSkew:
|
maxSkew:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
minDomains:
|
minDomains:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
nodeAffinityPolicy:
|
||||||
|
type: string
|
||||||
|
nodeTaintsPolicy:
|
||||||
|
type: string
|
||||||
topologyKey:
|
topologyKey:
|
||||||
type: string
|
type: string
|
||||||
whenUnsatisfiable:
|
whenUnsatisfiable:
|
||||||
|
@ -3257,30 +3322,39 @@ spec:
|
||||||
properties:
|
properties:
|
||||||
arn:
|
arn:
|
||||||
type: string
|
type: string
|
||||||
|
fullName:
|
||||||
|
type: string
|
||||||
name:
|
name:
|
||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- arn
|
- arn
|
||||||
|
- fullName
|
||||||
- name
|
- name
|
||||||
type: object
|
type: object
|
||||||
loadBalancer:
|
loadBalancer:
|
||||||
properties:
|
properties:
|
||||||
arn:
|
arn:
|
||||||
type: string
|
type: string
|
||||||
|
fullName:
|
||||||
|
type: string
|
||||||
name:
|
name:
|
||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- arn
|
- arn
|
||||||
|
- fullName
|
||||||
- name
|
- name
|
||||||
type: object
|
type: object
|
||||||
stableTargetGroup:
|
stableTargetGroup:
|
||||||
properties:
|
properties:
|
||||||
arn:
|
arn:
|
||||||
type: string
|
type: string
|
||||||
|
fullName:
|
||||||
|
type: string
|
||||||
name:
|
name:
|
||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- arn
|
- arn
|
||||||
|
- fullName
|
||||||
- name
|
- name
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
|
|
|
@ -177,6 +177,13 @@ controller:
|
||||||
# - mountPath: /etc/ssl/certs
|
# - mountPath: /etc/ssl/certs
|
||||||
# name: my-certs
|
# name: my-certs
|
||||||
|
|
||||||
|
# -- Configures 3rd party metric providers for controller
|
||||||
|
## Ref: https://argo-rollouts.readthedocs.io/en/stable/analysis/plugins/
|
||||||
|
metricProviderPlugins: {}
|
||||||
|
# metricProviderPlugins: |-
|
||||||
|
# - name: "argoproj-labs/sample-prometheus" # name of the plugin, it must match the name required by the plugin so that it can find its configuration
|
||||||
|
# location: "file://./my-custom-plugin" # supports http(s):// urls and file://
|
||||||
|
|
||||||
serviceAccount:
|
serviceAccount:
|
||||||
# -- Specifies whether a service account should be created
|
# -- Specifies whether a service account should be created
|
||||||
create: true
|
create: true
|
||||||
|
|
|
@ -3,7 +3,7 @@ appVersion: v3.4.7
|
||||||
name: argo-workflows
|
name: argo-workflows
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
type: application
|
type: application
|
||||||
version: 0.26.1
|
version: 0.28.0
|
||||||
icon: https://argoproj.github.io/argo-workflows/assets/logo.png
|
icon: https://argoproj.github.io/argo-workflows/assets/logo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
sources:
|
sources:
|
||||||
|
@ -12,6 +12,13 @@ maintainers:
|
||||||
- name: argoproj
|
- name: argoproj
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
annotations:
|
annotations:
|
||||||
|
artifacthub.io/signKey: |
|
||||||
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: chore
|
- kind: added
|
||||||
description: Update Chart icon
|
description: Add support for Google ManagedCertificate on GKE
|
||||||
|
- kind: added
|
||||||
|
description: Add support for Google FrontendConfig on GKE
|
||||||
|
- kind: added
|
||||||
|
description: Add support for Google BackendConfig on GKE
|
||||||
|
|
|
@ -101,6 +101,8 @@ Fields to note:
|
||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
|
| apiVersionOverrides.autoscaling | string | `""` | String to override apiVersion of autoscaling rendered by this helm chart |
|
||||||
|
| apiVersionOverrides.cloudgoogle | string | `""` | String to override apiVersion of GKE resources rendered by this helm chart |
|
||||||
| crds.annotations | object | `{}` | Annotations to be added to all CRDs |
|
| crds.annotations | object | `{}` | Annotations to be added to all CRDs |
|
||||||
| crds.install | bool | `true` | Install and upgrade CRDs |
|
| crds.install | bool | `true` | Install and upgrade CRDs |
|
||||||
| crds.keep | bool | `true` | Keep CRDs on chart uninstall |
|
| crds.keep | bool | `true` | Keep CRDs on chart uninstall |
|
||||||
|
@ -239,6 +241,12 @@ Fields to note:
|
||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
|
| server.GKEbackendConfig.enabled | bool | `false` | Enable BackendConfig custom resource for Google Kubernetes Engine |
|
||||||
|
| server.GKEbackendConfig.spec | object | `{}` | [BackendConfigSpec] |
|
||||||
|
| server.GKEfrontendConfig.enabled | bool | `false` | Enable FrontConfig custom resource for Google Kubernetes Engine |
|
||||||
|
| server.GKEfrontendConfig.spec | object | `{}` | [FrontendConfigSpec] |
|
||||||
|
| server.GKEmanagedCertificate.domains | list | `["argoworkflows.example.com"]` | Domains for the Google Managed Certificate |
|
||||||
|
| server.GKEmanagedCertificate.enabled | bool | `false` | Enable ManagedCertificate custom resource for Google Kubernetes Engine. |
|
||||||
| server.affinity | object | `{}` | Assign custom [affinity] rules |
|
| server.affinity | object | `{}` | Assign custom [affinity] rules |
|
||||||
| server.autoscaling.behavior | object | `{}` | Configures the scaling behavior of the target in both Up and Down directions. This is only available on HPA apiVersion `autoscaling/v2beta2` and newer |
|
| server.autoscaling.behavior | object | `{}` | Configures the scaling behavior of the target in both Up and Down directions. This is only available on HPA apiVersion `autoscaling/v2beta2` and newer |
|
||||||
| server.autoscaling.enabled | bool | `false` | Enable Horizontal Pod Autoscaler ([HPA]) for the Argo Server |
|
| server.autoscaling.enabled | bool | `false` | Enable Horizontal Pod Autoscaler ([HPA]) for the Argo Server |
|
||||||
|
@ -332,6 +340,8 @@ Fields to note:
|
||||||
1. moved the field previously known as `telemetryServicePort` inside the `telemetryConfig` as `telemetryConfig.servicePort` - same for `metricsConfig`
|
1. moved the field previously known as `telemetryServicePort` inside the `telemetryConfig` as `telemetryConfig.servicePort` - same for `metricsConfig`
|
||||||
|
|
||||||
[affinity]: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
|
[affinity]: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
|
||||||
|
[BackendConfigSpec]: https://cloud.google.com/kubernetes-engine/docs/concepts/backendconfig#backendconfigspec_v1beta1_cloudgooglecom
|
||||||
|
[FrontendConfigSpec]: https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-features#configuring_ingress_features_through_frontendconfig_parameters
|
||||||
[links]: https://argoproj.github.io/argo-workflows/links/
|
[links]: https://argoproj.github.io/argo-workflows/links/
|
||||||
[Node selector]: https://kubernetes.io/docs/user-guide/node-selection/
|
[Node selector]: https://kubernetes.io/docs/user-guide/node-selection/
|
||||||
[Pod Disruption Budget]: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
|
[Pod Disruption Budget]: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
|
||||||
|
|
|
@ -188,6 +188,8 @@ Fields to note:
|
||||||
1. moved the field previously known as `telemetryServicePort` inside the `telemetryConfig` as `telemetryConfig.servicePort` - same for `metricsConfig`
|
1. moved the field previously known as `telemetryServicePort` inside the `telemetryConfig` as `telemetryConfig.servicePort` - same for `metricsConfig`
|
||||||
|
|
||||||
[affinity]: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
|
[affinity]: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
|
||||||
|
[BackendConfigSpec]: https://cloud.google.com/kubernetes-engine/docs/concepts/backendconfig#backendconfigspec_v1beta1_cloudgooglecom
|
||||||
|
[FrontendConfigSpec]: https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-features#configuring_ingress_features_through_frontendconfig_parameters
|
||||||
[links]: https://argoproj.github.io/argo-workflows/links/
|
[links]: https://argoproj.github.io/argo-workflows/links/
|
||||||
[Node selector]: https://kubernetes.io/docs/user-guide/node-selection/
|
[Node selector]: https://kubernetes.io/docs/user-guide/node-selection/
|
||||||
[Pod Disruption Budget]: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
|
[Pod Disruption Budget]: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
|
||||||
|
|
|
@ -160,9 +160,22 @@ Return the appropriate apiVersion for autoscaling
|
||||||
{{- define "argo-workflows.apiVersion.autoscaling" -}}
|
{{- define "argo-workflows.apiVersion.autoscaling" -}}
|
||||||
{{- if .Values.apiVersionOverrides.autoscaling -}}
|
{{- if .Values.apiVersionOverrides.autoscaling -}}
|
||||||
{{- print .Values.apiVersionOverrides.autoscaling -}}
|
{{- print .Values.apiVersionOverrides.autoscaling -}}
|
||||||
{{- else if semverCompare "<1.23-0" (include "argo-cd.kubeVersion" .) -}}
|
{{- else if semverCompare "<1.23-0" (include "argo-workflows.kubeVersion" .) -}}
|
||||||
{{- print "autoscaling/v2beta1" -}}
|
{{- print "autoscaling/v2beta1" -}}
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
{{- print "autoscaling/v2" -}}
|
{{- print "autoscaling/v2" -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Return the appropriate apiVersion for GKE resources
|
||||||
|
*/}}
|
||||||
|
{{- define "argo-workflows.apiVersions.cloudgoogle" -}}
|
||||||
|
{{- if .Values.apiVersionOverrides.cloudgoogle -}}
|
||||||
|
{{- print .Values.apiVersionOverrides.cloudgoogle -}}
|
||||||
|
{{- else if .Capabilities.APIVersions.Has "cloud.google.com/v1" -}}
|
||||||
|
{{- print "cloud.google.com/v1" -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- print "cloud.google.com/v1beta1" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
|
@ -60,29 +60,29 @@ data:
|
||||||
archiveLogs: {{ .Values.artifactRepository.archiveLogs }}
|
archiveLogs: {{ .Values.artifactRepository.archiveLogs }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.artifactRepository.gcs }}
|
{{- with .Values.artifactRepository.gcs }}
|
||||||
gcs: {{- toYaml . | nindent 8 }}
|
gcs: {{- tpl (toYaml .) $ | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.artifactRepository.azure }}
|
{{- with .Values.artifactRepository.azure }}
|
||||||
azure: {{- toYaml . | nindent 8 }}
|
azure: {{- tpl (toYaml .) $ | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if and (not .Values.artifactRepository.gcs) (not .Values.artifactRepository.azure) }}
|
{{- if and (not .Values.artifactRepository.gcs) (not .Values.artifactRepository.azure) }}
|
||||||
s3:
|
s3:
|
||||||
{{- if .Values.useStaticCredentials }}
|
{{- if .Values.useStaticCredentials }}
|
||||||
accessKeySecret:
|
accessKeySecret:
|
||||||
key: {{ .Values.artifactRepository.s3.accessKeySecret.key }}
|
key: {{ tpl .Values.artifactRepository.s3.accessKeySecret.key . }}
|
||||||
name: {{ .Values.artifactRepository.s3.accessKeySecret.name }}
|
name: {{ tpl .Values.artifactRepository.s3.accessKeySecret.name . }}
|
||||||
secretKeySecret:
|
secretKeySecret:
|
||||||
key: {{ .Values.artifactRepository.s3.secretKeySecret.key }}
|
key: {{ tpl .Values.artifactRepository.s3.secretKeySecret.key . }}
|
||||||
name: {{ .Values.artifactRepository.s3.secretKeySecret.name }}
|
name: {{ tpl .Values.artifactRepository.s3.secretKeySecret.name . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
bucket: {{ .Values.artifactRepository.s3.bucket }}
|
bucket: {{ tpl (.Values.artifactRepository.s3.bucket | default "") . }}
|
||||||
endpoint: {{ .Values.artifactRepository.s3.endpoint }}
|
endpoint: {{ tpl (.Values.artifactRepository.s3.endpoint | default "") . }}
|
||||||
insecure: {{ .Values.artifactRepository.s3.insecure }}
|
insecure: {{ .Values.artifactRepository.s3.insecure }}
|
||||||
{{- if .Values.artifactRepository.s3.keyFormat }}
|
{{- if .Values.artifactRepository.s3.keyFormat }}
|
||||||
keyFormat: {{ .Values.artifactRepository.s3.keyFormat | quote }}
|
keyFormat: {{ .Values.artifactRepository.s3.keyFormat | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.artifactRepository.s3.region }}
|
{{- if .Values.artifactRepository.s3.region }}
|
||||||
region: {{ .Values.artifactRepository.s3.region }}
|
region: {{ tpl .Values.artifactRepository.s3.region $ }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.artifactRepository.s3.roleARN }}
|
{{- if .Values.artifactRepository.s3.roleARN }}
|
||||||
roleARN: {{ .Values.artifactRepository.s3.roleARN }}
|
roleARN: {{ .Values.artifactRepository.s3.roleARN }}
|
||||||
|
@ -184,4 +184,4 @@ data:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.controller.podGCDeleteDelayDuration }}
|
{{- with .Values.controller.podGCDeleteDelayDuration }}
|
||||||
podGCDeleteDelayDuration: {{ . }}
|
podGCDeleteDelayDuration: {{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
|
@ -35,7 +35,7 @@ spec:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.controller.extraInitContainers }}
|
{{- with .Values.controller.extraInitContainers }}
|
||||||
initContainers:
|
initContainers:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- tpl (toYaml .) $ | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: controller
|
- name: controller
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{{- if .Values.crds.install }}
|
{{- if .Values.crds.install }}
|
||||||
|
{{- if or (.Values.server.clusterWorkflowTemplates.enabled) (.Values.controller.clusterWorkflowTemplates.enabled) }}
|
||||||
apiVersion: apiextensions.k8s.io/v1
|
apiVersion: apiextensions.k8s.io/v1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -43,3 +44,4 @@ spec:
|
||||||
served: true
|
served: true
|
||||||
storage: true
|
storage: true
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
{{ range .Values.extraObjects }}
|
{{ range .Values.extraObjects }}
|
||||||
---
|
---
|
||||||
{{ tpl (toYaml .) $ }}
|
{{- if typeIs "string" . }}
|
||||||
|
{{- tpl . $ }}
|
||||||
|
{{- else }}
|
||||||
|
{{- tpl (toYaml .) $ }}
|
||||||
|
{{- end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
{{- if .Values.server.GKEbackendConfig.enabled }}
|
||||||
|
apiVersion: {{ include "argo-workflows.apiVersions.cloudgoogle" . }}
|
||||||
|
kind: BackendConfig
|
||||||
|
metadata:
|
||||||
|
name: {{ template "argo-workflows.server.fullname" . }}
|
||||||
|
namespace: {{ .Release.Namespace | quote }}
|
||||||
|
labels:
|
||||||
|
{{- include "argo-workflows.labels" (dict "context" . "component" .Values.server.name "name" .Values.server.name) | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
{{- toYaml .Values.server.GKEbackendConfig.spec | nindent 2 }}
|
||||||
|
{{- end }}
|
|
@ -0,0 +1,11 @@
|
||||||
|
{{- if .Values.server.GKEfrontendConfig.enabled }}
|
||||||
|
apiVersion: networking.gke.io/v1beta1
|
||||||
|
kind: FrontendConfig
|
||||||
|
metadata:
|
||||||
|
name: {{ template "argo-workflows.server.fullname" . }}
|
||||||
|
namespace: {{ .Release.Namespace | quote }}
|
||||||
|
labels:
|
||||||
|
{{- include "argo-workflows.labels" (dict "context" . "component" .Values.server.name "name" .Values.server.name) | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
{{- toYaml .Values.server.GKEfrontendConfig.spec | nindent 2 }}
|
||||||
|
{{- end }}
|
|
@ -0,0 +1,12 @@
|
||||||
|
{{- if .Values.server.GKEmanagedCertificate.enabled }}
|
||||||
|
apiVersion: networking.gke.io/v1
|
||||||
|
kind: ManagedCertificate
|
||||||
|
metadata:
|
||||||
|
name: {{ template "argo-workflows.server.fullname" . }}
|
||||||
|
namespace: {{ .Release.Namespace | quote }}
|
||||||
|
spec:
|
||||||
|
domains:
|
||||||
|
{{- with .Values.server.GKEmanagedCertificate.domains }}
|
||||||
|
{{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
|
@ -1,5 +1,5 @@
|
||||||
{{- if and .Values.server.enabled .Values.server.autoscaling.enabled }}
|
{{- if and .Values.server.enabled .Values.server.autoscaling.enabled }}
|
||||||
apiVersion: autoscaling/v2beta1
|
apiVersion: {{ include "argo-workflows.apiVersion.autoscaling" . }}
|
||||||
kind: HorizontalPodAutoscaler
|
kind: HorizontalPodAutoscaler
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ template "argo-workflows.server.fullname" . }}
|
name: {{ template "argo-workflows.server.fullname" . }}
|
||||||
|
|
|
@ -38,7 +38,7 @@ spec:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.server.extraInitContainers }}
|
{{- with .Values.server.extraInitContainers }}
|
||||||
initContainers:
|
initContainers:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- tpl (toYaml .) $ | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: argo-server
|
- name: argo-server
|
||||||
|
|
|
@ -29,6 +29,13 @@ fullnameOverride:
|
||||||
# -- Override the Kubernetes version, which is used to evaluate certain manifests
|
# -- Override the Kubernetes version, which is used to evaluate certain manifests
|
||||||
kubeVersionOverride: ""
|
kubeVersionOverride: ""
|
||||||
|
|
||||||
|
# Override APIVersions
|
||||||
|
apiVersionOverrides:
|
||||||
|
# -- String to override apiVersion of autoscaling rendered by this helm chart
|
||||||
|
autoscaling: "" # autoscaling/v2
|
||||||
|
# -- String to override apiVersion of GKE resources rendered by this helm chart
|
||||||
|
cloudgoogle: "" # cloud.google.com/v1
|
||||||
|
|
||||||
# -- Restrict Argo to operate only in a single namespace (the namespace of the
|
# -- Restrict Argo to operate only in a single namespace (the namespace of the
|
||||||
# Helm release) by apply Roles and RoleBindings instead of the Cluster
|
# Helm release) by apply Roles and RoleBindings instead of the Cluster
|
||||||
# equivalents, and start workflow-controller with the --namespaced flag. Use it
|
# equivalents, and start workflow-controller with the --namespaced flag. Use it
|
||||||
|
@ -571,6 +578,40 @@ server:
|
||||||
# hosts:
|
# hosts:
|
||||||
# - argoworkflows.example.com
|
# - argoworkflows.example.com
|
||||||
|
|
||||||
|
## Create a Google Backendconfig for use with the GKE Ingress Controller
|
||||||
|
## https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-configuration#configuring_ingress_features_through_backendconfig_parameters
|
||||||
|
GKEbackendConfig:
|
||||||
|
# -- Enable BackendConfig custom resource for Google Kubernetes Engine
|
||||||
|
enabled: false
|
||||||
|
# -- [BackendConfigSpec]
|
||||||
|
spec: {}
|
||||||
|
# spec:
|
||||||
|
# iap:
|
||||||
|
# enabled: true
|
||||||
|
# oauthclientCredentials:
|
||||||
|
# secretName: argoworkflows-secret
|
||||||
|
|
||||||
|
## Create a Google Managed Certificate for use with the GKE Ingress Controller
|
||||||
|
## https://cloud.google.com/kubernetes-engine/docs/how-to/managed-certs
|
||||||
|
GKEmanagedCertificate:
|
||||||
|
# -- Enable ManagedCertificate custom resource for Google Kubernetes Engine.
|
||||||
|
enabled: false
|
||||||
|
# -- Domains for the Google Managed Certificate
|
||||||
|
domains:
|
||||||
|
- argoworkflows.example.com
|
||||||
|
|
||||||
|
## Create a Google FrontendConfig Custom Resource, for use with the GKE Ingress Controller
|
||||||
|
## https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-features#configuring_ingress_features_through_frontendconfig_parameters
|
||||||
|
GKEfrontendConfig:
|
||||||
|
# -- Enable FrontConfig custom resource for Google Kubernetes Engine
|
||||||
|
enabled: false
|
||||||
|
# -- [FrontendConfigSpec]
|
||||||
|
spec: {}
|
||||||
|
# spec:
|
||||||
|
# redirectToHttps:
|
||||||
|
# enabled: true
|
||||||
|
# responseCodeName: RESPONSE_CODE
|
||||||
|
|
||||||
clusterWorkflowTemplates:
|
clusterWorkflowTemplates:
|
||||||
# -- Create a ClusterRole and CRB for the server to access ClusterWorkflowTemplates.
|
# -- Create a ClusterRole and CRB for the server to access ClusterWorkflowTemplates.
|
||||||
enabled: true
|
enabled: true
|
||||||
|
@ -650,10 +691,10 @@ artifactRepository:
|
||||||
# Note the `key` attribute is not the actual secret, it's the PATH to
|
# Note the `key` attribute is not the actual secret, it's the PATH to
|
||||||
# the contents in the associated secret, as defined by the `name` attribute.
|
# the contents in the associated secret, as defined by the `name` attribute.
|
||||||
accessKeySecret:
|
accessKeySecret:
|
||||||
# name: <releaseName>-minio
|
name: "{{ .Release.Name }}-minio"
|
||||||
key: accesskey
|
key: accesskey
|
||||||
secretKeySecret:
|
secretKeySecret:
|
||||||
# name: <releaseName>-minio
|
name: "{{ .Release.Name }}-minio"
|
||||||
key: secretkey
|
key: secretkey
|
||||||
# insecure will disable TLS. Primarily used for minio installs not configured with TLS
|
# insecure will disable TLS. Primarily used for minio installs not configured with TLS
|
||||||
insecure: false
|
insecure: false
|
||||||
|
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: argocd-apps
|
name: argocd-apps
|
||||||
description: A Helm chart for managing additional Argo CD Applications and Projects
|
description: A Helm chart for managing additional Argo CD Applications and Projects
|
||||||
type: application
|
type: application
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -13,6 +13,9 @@ maintainers:
|
||||||
- name: argoproj
|
- name: argoproj
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
annotations:
|
annotations:
|
||||||
|
artifacthub.io/signKey: |
|
||||||
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: added
|
||||||
description: Changed the project field of the applicationset from a tpl function to a string.
|
description: Generate application, applicationset, project with template
|
||||||
|
|
|
@ -31,6 +31,7 @@ $ helm install my-release argo/argocd-apps
|
||||||
| applications | list | `[]` (See [values.yaml]) | Deploy Argo CD Applications within this helm release |
|
| applications | list | `[]` (See [values.yaml]) | Deploy Argo CD Applications within this helm release |
|
||||||
| applicationsets | list | `[]` (See [values.yaml]) | Deploy Argo CD ApplicationSets within this helm release |
|
| applicationsets | list | `[]` (See [values.yaml]) | Deploy Argo CD ApplicationSets within this helm release |
|
||||||
| extensions | list | `[]` (See [values.yaml]) | Deploy Argo UI Extensions within this helm release |
|
| extensions | list | `[]` (See [values.yaml]) | Deploy Argo UI Extensions within this helm release |
|
||||||
|
| itemTemplates | list | `[]` (See [values.yaml]) | Deploy Argo CD Applications/ApplicationSets/Projects within this helm release |
|
||||||
| projects | list | `[]` (See [values.yaml]) | Deploy Argo CD Projects within this helm release |
|
| projects | list | `[]` (See [values.yaml]) | Deploy Argo CD Projects within this helm release |
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
|
|
61
charts/argocd-apps/ci/item-templates.yaml
Normal file
61
charts/argocd-apps/ci/item-templates.yaml
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
itemTemplates:
|
||||||
|
- items:
|
||||||
|
- name: my-appset
|
||||||
|
generators: &generators
|
||||||
|
- list:
|
||||||
|
elements:
|
||||||
|
- cluster: engineering-dev
|
||||||
|
url: https://1.2.3.4
|
||||||
|
- cluster: engineering-prod
|
||||||
|
url: https://2.4.6.8
|
||||||
|
- cluster: finance-preprod
|
||||||
|
url: https://9.8.7.6
|
||||||
|
template:
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: ApplicationSet
|
||||||
|
metadata:
|
||||||
|
name: "{{ .name }}"
|
||||||
|
spec:
|
||||||
|
generators: *generators
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
name: "{{`{{cluster}}`}}-guestbook"
|
||||||
|
spec:
|
||||||
|
project: my-project
|
||||||
|
source:
|
||||||
|
repoURL: https://github.com/infra-team/cluster-deployments.git
|
||||||
|
targetRevision: HEAD
|
||||||
|
path: guestbook/{{`{{cluster}}`}}
|
||||||
|
destination:
|
||||||
|
server: "{{`{{cluster}}`}}"
|
||||||
|
namespace: guestbook
|
||||||
|
- items:
|
||||||
|
- name: my-appset
|
||||||
|
generators:
|
||||||
|
- list:
|
||||||
|
elements:
|
||||||
|
- cluster: engineering-dev
|
||||||
|
url: https://1.2.3.4
|
||||||
|
- cluster: engineering-prod
|
||||||
|
url: https://2.4.6.8
|
||||||
|
- cluster: finance-preprod
|
||||||
|
url: https://9.8.7.6
|
||||||
|
template: |-
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: ApplicationSet
|
||||||
|
metadata:
|
||||||
|
name: {{ .name }}
|
||||||
|
spec:
|
||||||
|
generators: {{ toYaml .generators | nindent 4 }}
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
name: '{{`{{cluster}}`}}-guestbook'
|
||||||
|
spec:
|
||||||
|
project: my-project
|
||||||
|
source:
|
||||||
|
repoURL: https://github.com/infra-team/cluster-deployments.git
|
||||||
|
targetRevision: HEAD
|
||||||
|
path: guestbook/{{`{{cluster}}`}}
|
||||||
|
destination:
|
||||||
|
server: '{{`{{cluster}}`}}'
|
||||||
|
namespace: guestbook
|
15
charts/argocd-apps/templates/item-templates.yaml
Normal file
15
charts/argocd-apps/templates/item-templates.yaml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{{- range .Values.itemTemplates }}
|
||||||
|
{{- if kindIs "string" .template }}
|
||||||
|
{{- $template := .template -}}
|
||||||
|
{{- range .items }}
|
||||||
|
---
|
||||||
|
{{ tpl $template (set . "Template" $.Template) }}
|
||||||
|
{{- end }}
|
||||||
|
{{- else }}
|
||||||
|
{{- $template := .template | toYaml -}}
|
||||||
|
{{- range .items }}
|
||||||
|
---
|
||||||
|
{{ tpl $template (set . "Template" $.Template) }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
|
@ -133,6 +133,71 @@ applicationsets: []
|
||||||
# # Set Application finalizer
|
# # Set Application finalizer
|
||||||
# preserveResourcesOnDeletion: false
|
# preserveResourcesOnDeletion: false
|
||||||
|
|
||||||
|
# -- Deploy Argo CD Applications/ApplicationSets/Projects within this helm release
|
||||||
|
# @default -- `[]` (See [values.yaml])
|
||||||
|
## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/applicationset/
|
||||||
|
itemTemplates: []
|
||||||
|
# - items:
|
||||||
|
# - name: my-appset
|
||||||
|
# generators: &generators
|
||||||
|
# - list:
|
||||||
|
# elements:
|
||||||
|
# - cluster: engineering-dev
|
||||||
|
# url: https://1.2.3.4
|
||||||
|
# - cluster: engineering-prod
|
||||||
|
# url: https://2.4.6.8
|
||||||
|
# - cluster: finance-preprod
|
||||||
|
# url: https://9.8.7.6
|
||||||
|
# template:
|
||||||
|
# apiVersion: argoproj.io/v1alpha1
|
||||||
|
# kind: ApplicationSet
|
||||||
|
# metadata:
|
||||||
|
# name: "{{ .name }}"
|
||||||
|
# spec:
|
||||||
|
# generators: *generators
|
||||||
|
# template:
|
||||||
|
# metadata:
|
||||||
|
# name: "{{`{{cluster}}`}}-guestbook"
|
||||||
|
# spec:
|
||||||
|
# project: my-project
|
||||||
|
# source:
|
||||||
|
# repoURL: https://github.com/infra-team/cluster-deployments.git
|
||||||
|
# targetRevision: HEAD
|
||||||
|
# path: guestbook/{{`{{cluster}}`}}
|
||||||
|
# destination:
|
||||||
|
# server: "{{`{{cluster}}`}}"
|
||||||
|
# namespace: guestbook
|
||||||
|
# - items:
|
||||||
|
# - name: my-appset
|
||||||
|
# generators:
|
||||||
|
# - list:
|
||||||
|
# elements:
|
||||||
|
# - cluster: engineering-dev
|
||||||
|
# url: https://1.2.3.4
|
||||||
|
# - cluster: engineering-prod
|
||||||
|
# url: https://2.4.6.8
|
||||||
|
# - cluster: finance-preprod
|
||||||
|
# url: https://9.8.7.6
|
||||||
|
# template: |-
|
||||||
|
# apiVersion: argoproj.io/v1alpha1
|
||||||
|
# kind: ApplicationSet
|
||||||
|
# metadata:
|
||||||
|
# name: {{ .name }}
|
||||||
|
# spec:
|
||||||
|
# generators: {{ toYaml .generators | nindent 4 }}
|
||||||
|
# template:
|
||||||
|
# metadata:
|
||||||
|
# name: '{{`{{cluster}}`}}-guestbook'
|
||||||
|
# spec:
|
||||||
|
# project: my-project
|
||||||
|
# source:
|
||||||
|
# repoURL: https://github.com/infra-team/cluster-deployments.git
|
||||||
|
# targetRevision: HEAD
|
||||||
|
# path: guestbook/{{`{{cluster}}`}}
|
||||||
|
# destination:
|
||||||
|
# server: '{{`{{cluster}}`}}'
|
||||||
|
# namespace: guestbook
|
||||||
|
|
||||||
# -- Deploy Argo UI Extensions within this helm release
|
# -- Deploy Argo UI Extensions within this helm release
|
||||||
# @default -- `[]` (See [values.yaml])
|
# @default -- `[]` (See [values.yaml])
|
||||||
## This function in tech preview stage, do expect unstability or breaking changes in newer versions. Bump image.tag if necessary.
|
## This function in tech preview stage, do expect unstability or breaking changes in newer versions. Bump image.tag if necessary.
|
||||||
|
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: argocd-image-updater
|
name: argocd-image-updater
|
||||||
description: A Helm chart for Argo CD Image Updater, a tool to automatically update the container images of Kubernetes workloads which are managed by Argo CD
|
description: A Helm chart for Argo CD Image Updater, a tool to automatically update the container images of Kubernetes workloads which are managed by Argo CD
|
||||||
type: application
|
type: application
|
||||||
version: 0.9.0
|
version: 0.9.1
|
||||||
appVersion: v0.12.2
|
appVersion: v0.12.2
|
||||||
home: https://github.com/argoproj-labs/argocd-image-updater
|
home: https://github.com/argoproj-labs/argocd-image-updater
|
||||||
icon: https://argocd-image-updater.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argocd-image-updater.readthedocs.io/en/stable/assets/logo.png
|
||||||
|
@ -14,6 +14,9 @@ maintainers:
|
||||||
- name: argoproj
|
- name: argoproj
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
annotations:
|
annotations:
|
||||||
|
artifacthub.io/signKey: |
|
||||||
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: added
|
||||||
description: add namespace field for namespace scoped resources
|
description: Introduce chart signing
|
||||||
|
|
Loading…
Reference in a new issue