42 lines
831 B
YAML
42 lines
831 B
YAML
environments:
|
|
default:
|
|
values:
|
|
- environment.values.yaml
|
|
---
|
|
repositories:
|
|
- name: stable
|
|
url: https://kubernetes-charts.storage.googleapis.com/
|
|
- name: incubator
|
|
url: https://kubernetes-charts-incubator.storage.googleapis.com
|
|
|
|
helmDefaults:
|
|
kubeContext: minikube
|
|
|
|
releases:
|
|
|
|
- name: httpbin
|
|
chart: ./charts/httpbin
|
|
set:
|
|
- name: ingress.enabled
|
|
value: false
|
|
|
|
- name: raw
|
|
chart: incubator/raw
|
|
values:
|
|
- mysecret: {{ .Environment.Values.mysecret }}
|
|
- values.yaml
|
|
|
|
- name: helmx
|
|
chart: ./charts/helmx
|
|
namespace: helmx-system
|
|
jsonPatches:
|
|
- target:
|
|
version: v1
|
|
kind: ConfigMap
|
|
name: release-name
|
|
patch:
|
|
- op: add
|
|
path: /metadata/annotations
|
|
value:
|
|
foo: bar
|