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
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: 'eu-central-1' |
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
echo "[default] | |
aws_access_key_id = $(aws configure get aws_access_key_id) | |
aws_secret_access_key = $(aws configure get aws_secret_access_key) | |
" > aws-creds.conf |
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
$ kubectl get all -n crossplane-system | |
NAME READY STATUS RESTARTS AGE | |
pod/crossplane-7c88c45998-d26wl 1/1 Running 0 69s | |
pod/crossplane-rbac-manager-8466dfb7fc-db9rb 1/1 Running 0 69s | |
NAME READY UP-TO-DATE AVAILABLE AGE | |
deployment.apps/crossplane 1/1 1 1 69s | |
deployment.apps/crossplane-rbac-manager 1/1 1 1 69s | |
NAME DESIRED CURRENT READY AGE |
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
error: resource mapping not found for name: "provider-aws" namespace: "" from "provider-aws.yaml": no matches for kind "Provider" in version "pkg.crossplane.io/v1" | |
ensure CRDs are installed first |
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
kubectl wait --for=condition=ready pod -l app=crossplane --namespace crossplane-system --timeout=120s |
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
$ helm list -n crossplane-system | |
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION | |
crossplane crossplane-system 1 2022-06-21 09:28:21.178357 +0200 CEST deployed crossplane-1.8.1 1.8.1 |
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
helm dependency update crossplane-config/install | |
helm upgrade --install crossplane --namespace crossplane-system crossplane-config/install |
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
kubectl create namespace crossplane-system | |
helm repo add crossplane-stable https://charts.crossplane.io/stable | |
helm repo update | |
helm upgrade --install crossplane --namespace crossplane-system crossplane-stable/crossplane |
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
kind create cluster --image kindest/node:v1.23.0 --wait 5m |
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
curl -sL https://raw.githubusercontent.com/crossplane/crossplane/master/install.sh | sh | |
sudo mv kubectl-crossplane /usr/local/bin |