Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cicd/values/crossplane.values.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
args:
- '--debug'
- '--enable-usages'
- '--enable-external-secret-stores'
provider:
packages:
{{- range .Values.providers }}
Expand Down
19 changes: 19 additions & 0 deletions infra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,18 @@ EOF
### CRDS

```bash
# w/ kubectl
kubectl apply -k https://github.com/stuttgart-things/helm/infra/crds/cilium
```

```bash
# w/ dagger
dagger call -m github.com/stuttgart-things/dagger/kubernetes@v0.57.0 kubectl \
--operation apply \
--kustomize-source https://github.com/stuttgart-things/helm/infra/crds/cilium \
--kube-config file://config.yaml
```

### DEPLOY

```bash
Expand All @@ -50,6 +59,16 @@ helmfiles:
EOF
```

```bash
# w/ dagger
dagger call -m github.com/stuttgart-things/dagger/helm@v0.57.0 helmfile-operation \
--helmfile-ref "git::https://github.com/stuttgart-things/helm.git@infra/cilium.yaml.gotmpl" \
--operation apply \
--state-values "config=kind,clusterName=dev,configureLB=false" \
--kube-config file://config.yaml \
--progress plain -vv
```

</details>

<details><summary>INGRESS-NGINX</summary>
Expand Down
2 changes: 1 addition & 1 deletion infra/cilium.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ environments:
default:
values:
- namespace: kube-system
- version: 1.18.0
- version: 1.18.5
- configureLB: false
- config: kind
- clusterName: kind
Expand Down
Loading