-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
k8s: Remove Argo managed services from helmfile (#1840)
* k8s: Remove Argo managed services from helmfile This commit seeks to remove services that are now fully migrated to argo from the main helmfile.yaml. This should prevent running `make apply` from showing phantom diffs where argo has already enacted the change but helm hasn't yet recorded that change in its secrets.
- Loading branch information
Showing
3 changed files
with
68 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
repositories: | ||
- name: wbstack | ||
url: https://wbstack.github.io/charts | ||
- name: bitnami | ||
url: https://charts.bitnami.com/bitnami | ||
- name: bitnami-legacy | ||
# yamllint disable-line rule:line-length | ||
url: https://raw.githubusercontent.com/bitnami/charts/eb5f9a9513d987b519f0ecd732e7031241c50328/bitnami | ||
- name: cetic | ||
url: https://cetic.github.io/helm-charts | ||
- name: codecentric | ||
url: https://codecentric.github.io/helm-charts | ||
- name: ingress-nginx | ||
url: https://kubernetes.github.io/ingress-nginx | ||
- name: prometheus-community | ||
url: https://prometheus-community.github.io/helm-charts | ||
- name: istio | ||
url: https://istio-release.storage.googleapis.com/charts | ||
- name: minio | ||
url: https://charts.min.io | ||
|
||
environments: | ||
default: | ||
kubeContext: INVALID-ENVIRONMENT | ||
production: | ||
kubeContext: gke_wikibase-cloud_europe-west3-a_wbaas-3 | ||
values: | ||
- ./env/production/base.yaml | ||
- ./env/production/private.yaml | ||
staging: | ||
kubeContext: gke_wikibase-cloud_europe-west3-a_wbaas-2 | ||
values: | ||
- ./env/staging/base.yaml | ||
- ./env/staging/private.yaml | ||
local: | ||
kubeContext: minikube-wbaas | ||
values: | ||
- ./env/local/base.yaml | ||
- ./env/local/private.yaml | ||
|
||
--- | ||
|
||
templates: | ||
default: &default_release | ||
missingFileHandler: Error | ||
values: | ||
- env/production/{{`{{ .Release.Name }}`}}.values.yaml.gotmpl | ||
- env/{{`{{ .Environment.Name }}`}}/{{`{{ .Release.Name }}`}}.values.yaml.gotmpl | ||
|
||
releases: | ||
- name: api | ||
chart: wbstack/api | ||
version: "0.32.0" | ||
namespace: default | ||
<<: *default_release | ||
|
||
- name: ui | ||
namespace: default | ||
chart: wbstack/ui | ||
version: 0.3.1 | ||
<<: *default_release | ||
|
||
- name: redis | ||
namespace: default | ||
chart: bitnami/redis | ||
version: 17.3.8 | ||
<<: *default_release |