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
#!/bin/bash | |
set -e | |
## use this script if you what you want to do ;) | |
## check that crossplane is running as minimum with | |
## resources: | |
## limits: | |
## cpu: 2000m | |
## memory: 2Gi |
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
#!/bin/bash | |
set -e | |
uidpath=$(kubectl get cluster.container.gcp.upbound.io/nodepool -o jsonpath='{.metadata.uid}') | |
echo $uidpath | |
kubectl get pods -n crossplane-system | grep "provider-gcp" | awk {'print $1'} | xargs -I% kubectl exec -it % -n crossplane-system -- /bin/bash -c "cd /tmp/$uidpath/; sed -i 's/\"lifecycle\":{\"prevent_destroy\":true},//g' main.tf.json; terraform init; terraform plan" |
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
#!/bin/bash | |
set -e | |
export AWS_PAGER="" | |
CASTAI_API_URL="${CASTAI_API_URL:-https://api.cast.ai}" | |
kubectl get namespace castai-agent > /dev/null 2>&1 | |
if [ $? -eq 1 ] | |
then |
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
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: cleanup-clusteradmissionreports | |
namespace: kyverno | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRole | |
metadata: | |
name: cleanup-clusteradmissionreports |
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 "==> Set variables..." | |
export REGISTRY_URL="${AWS_ACCOUNT}.dkr.ecr.${AWS_REGION}.amazonaws.com/${REPOSITORY_NAME}/${IMAGE_NAME}" | |
export HELM_EXPERIMENTAL_OCI=1 | |
echo "==> Login to ecr..." | |
aws ecr get-login-password --region ${AWS_REGION} | docker login --username AWS --password-stdin ${REGISTRY_URL} | |
echo "==> Create and deploy xpkg..." | |
cd compositions | |
kubectl crossplane build configuration --name ${IMAGE_NAME} | |
kubectl crossplane push configuration ${REGISTRY_URL}:${IMAGE_TAG} |
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
group: kms.aws.devops.cloud | |
name: Key | |
version: v1alpha1 | |
crd: ./.work/provider-aws/package/crds/kms.aws.crossplane.io_keys.yaml | |
ignore: true | |
compositions: | |
- name: key | |
provider: sop | |
default: true |
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
apiVersion: apiextensions.crossplane.io/v1 | |
kind: Composition | |
metadata: | |
name: eks.aws.example.com | |
labels: | |
provider: aws | |
spec: | |
writeConnectionSecretsToNamespace: crossplane-system | |
compositeTypeRef: | |
apiVersion: aws.example.com/v1alpha1 |
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
--- | |
apiVersion: aws.crossplane.io/v1beta1 | |
kind: ProviderConfig | |
metadata: | |
name: aws-provider-111111111111 | |
spec: | |
credentials: | |
source: InjectedIdentity |
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
[...] | |
- name: aws-auth-configmap | |
base: | |
apiVersion: kubernetes.crossplane.io/v1alpha1 | |
kind: Object | |
spec: | |
forProvider: | |
manifest: | |
apiVersion: v1 | |
kind: ConfigMap |
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
apiVersion: source.toolkit.fluxcd.io/v1beta1 | |
kind: GitRepository | |
metadata: | |
name: flux-system | |
namespace: flux-system | |
spec: | |
interval: 1m | |
url: https://github.com/fluxcd/flux2-kustomize-helm-example.git | |
ref: | |
branch: main |