|
| 1 | +apiVersion: helm.crossplane.io/v1beta1 |
| 2 | +kind: Release |
| 3 | +metadata: |
| 4 | + name: wordpress-example |
| 5 | +spec: |
| 6 | + # rollbackLimit: 3 |
| 7 | + forProvider: |
| 8 | + chart: |
| 9 | + name: wordpress |
| 10 | + repository: https://charts.bitnami.com/bitnami |
| 11 | + version: 15.2.5 ## To use development versions, set ">0.0.0-0" |
| 12 | + # pullSecretRef: |
| 13 | + # name: museum-creds |
| 14 | + # namespace: default |
| 15 | + # url: "https://charts.bitnami.com/bitnami/wordpress-9.3.19.tgz" |
| 16 | + namespace: wordpress |
| 17 | + # insecureSkipTLSVerify: true |
| 18 | + # skipCreateNamespace: true |
| 19 | + # wait: true |
| 20 | + # skipCRDs: true |
| 21 | + values: |
| 22 | + service: |
| 23 | + type: ClusterIP |
| 24 | + set: |
| 25 | + - name: param1 |
| 26 | + value: value2 |
| 27 | + # valuesFrom: |
| 28 | + # - configMapKeyRef: |
| 29 | + # key: values.yaml |
| 30 | + # name: default-vals |
| 31 | + # namespace: wordpress |
| 32 | + # optional: false |
| 33 | + # - secretKeyRef: |
| 34 | + # key: svalues.yaml |
| 35 | + # name: svals |
| 36 | + # namespace: wordpress |
| 37 | + # optional: false |
| 38 | + # connectionDetails: |
| 39 | + # - apiVersion: v1 |
| 40 | + # kind: Service |
| 41 | + # name: wordpress-example |
| 42 | + # namespace: wordpress |
| 43 | + # fieldPath: spec.clusterIP |
| 44 | + # #fieldPath: status.loadBalancer.ingress[0].ip |
| 45 | + # toConnectionSecretKey: ip |
| 46 | + # - apiVersion: v1 |
| 47 | + # kind: Service |
| 48 | + # name: wordpress-example |
| 49 | + # namespace: wordpress |
| 50 | + # fieldPath: spec.ports[0].port |
| 51 | + # toConnectionSecretKey: port |
| 52 | + # - apiVersion: v1 |
| 53 | + # kind: Secret |
| 54 | + # name: wordpress-example |
| 55 | + # namespace: wordpress |
| 56 | + # fieldPath: data.wordpress-password |
| 57 | + # toConnectionSecretKey: password |
| 58 | + # - apiVersion: v1 |
| 59 | + # kind: Secret |
| 60 | + # name: manual-api-secret |
| 61 | + # namespace: wordpress |
| 62 | + # fieldPath: data.api-key |
| 63 | + # toConnectionSecretKey: api-key |
| 64 | + # # this secret created manually (not via Helm chart), so skip 'part of helm release' check |
| 65 | + # skipPartOfReleaseCheck: true |
| 66 | + # writeConnectionSecretToRef: |
| 67 | + # name: wordpress-credentials |
| 68 | + # namespace: crossplane-system |
| 69 | + providerConfigRef: |
| 70 | + name: helm-provider |
0 commit comments