-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent Unfinished Pull Requests (#13)
Run the chart generation during CI to ensure that the user has actually done so and checked in the correct versions. Also, the readme for CAPO will get deleted by the generator, so move it somewhere out of the firing line and template it!
- Loading branch information
Showing
6 changed files
with
57 additions
and
5 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
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,46 @@ | ||
# 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> | ||
|
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