This file contains hidden or 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 providerrevision | |
| NAME HEALTHY REVISION IMAGE STATE DEP-FOUND DEP-INSTALLED AGE | |
| providerrevision.pkg.crossplane.io/provider-aws-2189bc61e0bd True 1 crossplane/provider-aws:v0.22.0 Inactive 6d22h | |
| providerrevision.pkg.crossplane.io/provider-aws-d87796863f95 True 2 crossplane/provider-aws:v0.28.1 Active 43h |
This file contains hidden or 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
| apiVersion: pkg.crossplane.io/v1 | |
| kind: Provider | |
| metadata: | |
| name: provider-aws | |
| spec: | |
| package: crossplane/provider-aws:v0.28.1 | |
| packagePullPolicy: Always | |
| revisionActivationPolicy: Automatic | |
| revisionHistoryLimit: 1 |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |