-
Notifications
You must be signed in to change notification settings - Fork 2
/
README.provider-openstack.md.tmpl
46 lines (40 loc) · 1.11 KB
/
README.provider-openstack.md.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Installing Cluster API Provider OpenStack
<details>
<summary>Helm</summary>
```shell
helm repo add unikorn-cloud-capi https://unikorn-cloud.github.io/helm-cluster-api
helm repo update
helm upgrade --install cluster-api-provider-openstack unikorn-cloud-capi/cluster-api-provider-openstack -n cluster-api --create-namespace --version {{ .CAPO_CHART_VERSION }}
```
</details>
<details>
<summary>ArgoCD</summary>
```yaml
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: cluster-api-provider-openstack
namespace: argocd
spec:
project: default
source:
repoURL: https://unikorn-cloud.github.io/helm-cluster-api
chart: cluster-api-provider-openstack
targetRevision: {{ .CAPO_CHART_VERSION }}
destination:
server: https://kubernetes.default.svc
namespace: cluster-api
ignoreDifferences:
- group: apiextensions.k8s.io
kind: CustomResourceDefinition
jsonPointers:
- /spec/conversion/webhook/clientConfig/caBundle
syncPolicy:
automated:
selfHeal: true
syncOptions:
- RespectIgnoreDifferences=true
- CreateNamespace=true
```
</details>