Update
Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com>
This commit is contained in:
parent
0cea75c3a5
commit
3fa233ec0a
4 changed files with 18 additions and 5 deletions
|
@ -6,8 +6,19 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run: ct lint --config .github/ct.yaml --lint-conf .github/lintconf.yaml
|
- run: ct lint --config .github/ct.yaml --lint-conf .github/lintconf.yaml
|
||||||
|
publish:
|
||||||
|
docker:
|
||||||
|
# We just need an image with `helm` on it. Handily we know of one already.
|
||||||
|
- image: bash
|
||||||
|
steps:
|
||||||
|
# install the additional keys needed to push to GitHub. Alex Collins owns these keys.
|
||||||
|
- echo "Replaced by Github Workflow: https://github.com/argoproj/argo-helm/actions/workflows/publish.yml"
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
workflow:
|
workflow:
|
||||||
jobs:
|
jobs:
|
||||||
- lint
|
- lint
|
||||||
|
- publish:
|
||||||
|
requires:
|
||||||
|
- lint
|
|
@ -1,5 +1,7 @@
|
||||||
# Argo Helm Charts
|
# Argo Helm Charts
|
||||||
|
|
||||||
|
[](https://github.com/argoproj/argo-helm/actions/workflows/publish.yml)
|
||||||
|
|
||||||
Argo Helm is a collection of **community maintained** charts for http://argoproj.io/ projects. The charts can be added using following command:
|
Argo Helm is a collection of **community maintained** charts for http://argoproj.io/ projects. The charts can be added using following command:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
controller:
|
controller:
|
||||||
serviceMonitor:
|
serviceMonitor:
|
||||||
enabled: true
|
enabled: false
|
||||||
metricsConfig:
|
metricsConfig:
|
||||||
enabled: true
|
enabled: true
|
||||||
telemetryConfig:
|
telemetryConfig:
|
||||||
|
|
|
@ -71,7 +71,7 @@ tolerations: []
|
||||||
|
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
mountSSHKnownHostsVolume: true
|
mountSSHKnownHostsVolume: false
|
||||||
mountTLSCertsVolume: true
|
mountTLSCertsVolume: false
|
||||||
mountGPGKeysVolume: false
|
mountGPGKeysVolume: false
|
||||||
mountGPGKeyringVolume: true
|
mountGPGKeyringVolume: false
|
||||||
|
|
Loading…
Reference in a new issue