├── OWNERS.md ├── README.md ├── apps └── wordpress │ ├── app.yaml │ ├── cluster.yaml │ ├── kustomization.yaml │ └── mysql.yaml ├── aws ├── environments │ ├── dev-default │ │ └── kustomization.yaml │ ├── dev │ │ ├── kubernetescluster.yaml │ │ ├── kustomization.yaml │ │ ├── mysqlinstance.yaml │ │ ├── postgresqlinstance.yaml │ │ └── rediscluster.yaml │ ├── full │ │ └── kustomization.yaml │ ├── prod-default │ │ └── kustomization.yaml │ ├── prod │ │ ├── kubernetescluster.yaml │ │ ├── kustomization.yaml │ │ ├── mysqlinstance.yaml │ │ ├── postgresqlinstance.yaml │ │ └── rediscluster.yaml │ ├── staging-default │ │ └── kustomization.yaml │ └── staging │ │ └── kustomization.yaml └── services │ ├── cache │ └── rediscluster │ │ ├── class.yaml │ │ └── kustomization.yaml │ ├── compute │ └── kubernetescluster │ │ ├── class.yaml │ │ └── kustomization.yaml │ ├── database │ ├── dbsubnetgroup │ │ ├── kustomization.yaml │ │ └── resource.yaml │ ├── mysqlinstance │ │ ├── class.yaml │ │ └── kustomization.yaml │ └── postgresqlinstance │ │ ├── class.yaml │ │ └── kustomization.yaml │ ├── identity │ ├── iamrole │ │ ├── kustomization.yaml │ │ └── resource.yaml │ └── iamrolepolicyattachment │ │ ├── kustomization.yaml │ │ └── resource.yaml │ ├── kustomization.yaml │ ├── network │ ├── internetgateway │ │ ├── kustomization.yaml │ │ └── resource.yaml │ ├── routetable │ │ ├── kustomization.yaml │ │ └── resource.yaml │ ├── securitygroup │ │ ├── kustomization.yaml │ │ └── resource.yaml │ ├── subnet │ │ ├── kustomization.yaml │ │ └── resource.yaml │ └── vpc │ │ ├── kustomization.yaml │ │ └── resource.yaml │ └── storage │ └── bucket │ ├── class.yaml │ └── kustomization.yaml ├── azure ├── environments │ ├── dev-default │ │ └── kustomization.yaml │ ├── dev │ │ ├── kubernetescluster.yaml │ │ ├── kustomization.yaml │ │ ├── mysqlinstance.yaml │ │ ├── postgresqlinstance.yaml │ │ └── rediscluster.yaml │ ├── full │ │ └── kustomization.yaml │ ├── prod-default │ │ └── kustomization.yaml │ ├── prod │ │ ├── kubernetescluster.yaml │ │ ├── kustomization.yaml │ │ ├── mysqlinstance.yaml │ │ ├── postgresqlinstance.yaml │ │ └── rediscluster.yaml │ ├── staging-default │ │ └── kustomization.yaml │ └── staging │ │ └── kustomization.yaml └── services │ ├── cache │ └── rediscluster │ │ ├── class.yaml │ │ └── kustomization.yaml │ ├── compute │ └── kubernetescluster │ │ ├── class.yaml │ │ └── kustomization.yaml │ ├── database │ ├── mysqlinstance │ │ ├── class.yaml │ │ └── kustomization.yaml │ └── postgresqlinstance │ │ ├── class.yaml │ │ └── kustomization.yaml │ ├── kustomization.yaml │ └── storage │ └── bucket │ ├── account-class.yaml │ ├── container-class.yaml │ └── kustomization.yaml ├── classpacks ├── quickstart │ ├── dev │ │ └── kustomization.yaml │ └── prod │ │ └── kustomization.yaml └── workflow │ └── argo │ ├── app-aws │ ├── kustomization.yaml │ └── patch.yaml │ ├── app │ ├── kustomization.yaml │ └── patch.yaml │ └── infra │ ├── aws │ ├── iamrolepolicyattachment-cluster │ │ ├── kustomization.yaml │ │ └── patch.yaml │ ├── iamrolepolicyattachment-service │ │ ├── kustomization.yaml │ │ └── patch.yaml │ ├── kustomization.yaml │ ├── patch.yaml │ ├── securitygroup-eks │ │ ├── kustomization.yaml │ │ └── patch.yaml │ ├── securitygroup-rds │ │ ├── kustomization.yaml │ │ └── patch.yaml │ ├── subnet-1 │ │ ├── kustomization.yaml │ │ └── patch.yaml │ ├── subnet-2 │ │ ├── kustomization.yaml │ │ └── patch.yaml │ └── subnet-3 │ │ ├── kustomization.yaml │ │ └── patch.yaml │ └── gcp │ ├── kustomization.yaml │ └── patch.yaml ├── gcp ├── environments │ ├── dev-default │ │ └── kustomization.yaml │ ├── dev │ │ ├── kubernetescluster.yaml │ │ ├── kustomization.yaml │ │ ├── mysqlinstance.yaml │ │ ├── postgresqlinstance.yaml │ │ └── rediscluster.yaml │ ├── full │ │ └── kustomization.yaml │ ├── prod-default │ │ └── kustomization.yaml │ ├── prod │ │ ├── kubernetescluster.yaml │ │ ├── kustomization.yaml │ │ ├── mysqlinstance.yaml │ │ ├── postgresqlinstance.yaml │ │ └── rediscluster.yaml │ ├── staging-default │ │ └── kustomization.yaml │ └── staging │ │ └── kustomization.yaml └── services │ ├── cache │ └── rediscluster │ │ ├── class.yaml │ │ └── kustomization.yaml │ ├── compute │ ├── globaladdress │ │ ├── kustomization.yaml │ │ └── resource.yaml │ ├── kubernetescluster │ │ ├── class.yaml │ │ └── kustomization.yaml │ ├── network │ │ ├── kustomization.yaml │ │ └── resource.yaml │ └── subnetwork │ │ ├── kustomization.yaml │ │ └── resource.yaml │ ├── database │ ├── mysqlinstance │ │ ├── class.yaml │ │ └── kustomization.yaml │ └── postgresqlinstance │ │ ├── class.yaml │ │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── servicenetworking │ └── connection │ │ ├── kustomization.yaml │ │ └── resource.yaml │ └── storage │ └── bucket │ ├── class.yaml │ └── kustomization.yaml ├── guides ├── argo-oam │ ├── infra │ │ ├── classes │ │ │ ├── cloudsqlclass.yaml │ │ │ └── gkeclusterclass.yaml │ │ ├── components │ │ │ ├── tracker-data-component.yaml │ │ │ ├── tracker-db-component.yaml │ │ │ ├── tracker-flights-component.yaml │ │ │ ├── tracker-managed-db-component.yaml │ │ │ ├── tracker-quakes-component.yaml │ │ │ ├── tracker-ui-component.yaml │ │ │ └── tracker-weather-component.yaml │ │ ├── definitions │ │ │ ├── bucket-workload-definition.yaml │ │ │ ├── containerized-workload-definition.yaml │ │ │ ├── kubernetes-cluster-workload-definition.yaml │ │ │ ├── machine-instance-workload-definition.yaml │ │ │ ├── manual-scaler-trait-definition.yaml │ │ │ ├── mysql-workload-definition.yaml │ │ │ ├── nosql-workload-definition.yaml │ │ │ ├── postgres-workload-definition.yaml │ │ │ └── redis-workload-definition.yaml │ │ ├── kubernetescluster.yaml │ │ └── network │ │ │ ├── connection.yaml │ │ │ ├── globaladdress.yaml │ │ │ ├── network.yaml │ │ │ └── subnetwork.yaml │ └── service-tracker │ │ └── appconfig.yaml └── aws-argo │ ├── README.md │ ├── app-1 │ ├── kubernetesapplication.yaml │ └── mysqlinstanceclaim.yaml │ ├── app-2 │ ├── kubernetesapplication.yaml │ └── mysqlinstanceclaim.yaml │ └── infra │ ├── us-east-1 │ ├── eksclusterclass.yaml │ ├── iam.yaml │ ├── internetgateway.yaml │ ├── kubernetesclusterclaim.yaml │ ├── rdsinstanceclass.yaml │ ├── routetable.yaml │ ├── securitygroup.yaml │ ├── subnet.yaml │ └── vpc.yaml │ └── us-west-2 │ ├── eksclusterclass.yaml │ ├── iam.yaml │ ├── internetgateway.yaml │ ├── kubernetesclusterclaim.yaml │ ├── rdsinstanceclass.yaml │ ├── routetable.yaml │ ├── securitygroup.yaml │ ├── subnet.yaml │ └── vpc.yaml └── kustomization.yaml /OWNERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/OWNERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/README.md -------------------------------------------------------------------------------- /apps/wordpress/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/apps/wordpress/app.yaml -------------------------------------------------------------------------------- /apps/wordpress/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/apps/wordpress/cluster.yaml -------------------------------------------------------------------------------- /apps/wordpress/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/apps/wordpress/kustomization.yaml -------------------------------------------------------------------------------- /apps/wordpress/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/apps/wordpress/mysql.yaml -------------------------------------------------------------------------------- /aws/environments/dev-default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/dev-default/kustomization.yaml -------------------------------------------------------------------------------- /aws/environments/dev/kubernetescluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/dev/kubernetescluster.yaml -------------------------------------------------------------------------------- /aws/environments/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/dev/kustomization.yaml -------------------------------------------------------------------------------- /aws/environments/dev/mysqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/dev/mysqlinstance.yaml -------------------------------------------------------------------------------- /aws/environments/dev/postgresqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/dev/postgresqlinstance.yaml -------------------------------------------------------------------------------- /aws/environments/dev/rediscluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/dev/rediscluster.yaml -------------------------------------------------------------------------------- /aws/environments/full/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/full/kustomization.yaml -------------------------------------------------------------------------------- /aws/environments/prod-default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/prod-default/kustomization.yaml -------------------------------------------------------------------------------- /aws/environments/prod/kubernetescluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/prod/kubernetescluster.yaml -------------------------------------------------------------------------------- /aws/environments/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/prod/kustomization.yaml -------------------------------------------------------------------------------- /aws/environments/prod/mysqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/prod/mysqlinstance.yaml -------------------------------------------------------------------------------- /aws/environments/prod/postgresqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/prod/postgresqlinstance.yaml -------------------------------------------------------------------------------- /aws/environments/prod/rediscluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/prod/rediscluster.yaml -------------------------------------------------------------------------------- /aws/environments/staging-default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/staging-default/kustomization.yaml -------------------------------------------------------------------------------- /aws/environments/staging/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/environments/staging/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/cache/rediscluster/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/cache/rediscluster/class.yaml -------------------------------------------------------------------------------- /aws/services/cache/rediscluster/kustomization.yaml: -------------------------------------------------------------------------------- 1 | commonLabels: 2 | provider: aws 3 | resources: 4 | - class.yaml 5 | -------------------------------------------------------------------------------- /aws/services/compute/kubernetescluster/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/compute/kubernetescluster/class.yaml -------------------------------------------------------------------------------- /aws/services/compute/kubernetescluster/kustomization.yaml: -------------------------------------------------------------------------------- 1 | commonLabels: 2 | provider: aws 3 | resources: 4 | - class.yaml 5 | -------------------------------------------------------------------------------- /aws/services/database/dbsubnetgroup/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/database/dbsubnetgroup/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/database/dbsubnetgroup/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/database/dbsubnetgroup/resource.yaml -------------------------------------------------------------------------------- /aws/services/database/mysqlinstance/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/database/mysqlinstance/class.yaml -------------------------------------------------------------------------------- /aws/services/database/mysqlinstance/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/database/mysqlinstance/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/database/postgresqlinstance/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/database/postgresqlinstance/class.yaml -------------------------------------------------------------------------------- /aws/services/database/postgresqlinstance/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/database/postgresqlinstance/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/identity/iamrole/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/identity/iamrole/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/identity/iamrole/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/identity/iamrole/resource.yaml -------------------------------------------------------------------------------- /aws/services/identity/iamrolepolicyattachment/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/identity/iamrolepolicyattachment/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/identity/iamrolepolicyattachment/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/identity/iamrolepolicyattachment/resource.yaml -------------------------------------------------------------------------------- /aws/services/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/network/internetgateway/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/network/internetgateway/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/network/internetgateway/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/network/internetgateway/resource.yaml -------------------------------------------------------------------------------- /aws/services/network/routetable/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/network/routetable/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/network/routetable/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/network/routetable/resource.yaml -------------------------------------------------------------------------------- /aws/services/network/securitygroup/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/network/securitygroup/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/network/securitygroup/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/network/securitygroup/resource.yaml -------------------------------------------------------------------------------- /aws/services/network/subnet/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/network/subnet/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/network/subnet/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/network/subnet/resource.yaml -------------------------------------------------------------------------------- /aws/services/network/vpc/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/network/vpc/kustomization.yaml -------------------------------------------------------------------------------- /aws/services/network/vpc/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/network/vpc/resource.yaml -------------------------------------------------------------------------------- /aws/services/storage/bucket/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/aws/services/storage/bucket/class.yaml -------------------------------------------------------------------------------- /aws/services/storage/bucket/kustomization.yaml: -------------------------------------------------------------------------------- 1 | commonLabels: 2 | provider: aws 3 | resources: 4 | - class.yaml 5 | -------------------------------------------------------------------------------- /azure/environments/dev-default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/dev-default/kustomization.yaml -------------------------------------------------------------------------------- /azure/environments/dev/kubernetescluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/dev/kubernetescluster.yaml -------------------------------------------------------------------------------- /azure/environments/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/dev/kustomization.yaml -------------------------------------------------------------------------------- /azure/environments/dev/mysqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/dev/mysqlinstance.yaml -------------------------------------------------------------------------------- /azure/environments/dev/postgresqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/dev/postgresqlinstance.yaml -------------------------------------------------------------------------------- /azure/environments/dev/rediscluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/dev/rediscluster.yaml -------------------------------------------------------------------------------- /azure/environments/full/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/full/kustomization.yaml -------------------------------------------------------------------------------- /azure/environments/prod-default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/prod-default/kustomization.yaml -------------------------------------------------------------------------------- /azure/environments/prod/kubernetescluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/prod/kubernetescluster.yaml -------------------------------------------------------------------------------- /azure/environments/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/prod/kustomization.yaml -------------------------------------------------------------------------------- /azure/environments/prod/mysqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/prod/mysqlinstance.yaml -------------------------------------------------------------------------------- /azure/environments/prod/postgresqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/prod/postgresqlinstance.yaml -------------------------------------------------------------------------------- /azure/environments/prod/rediscluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/prod/rediscluster.yaml -------------------------------------------------------------------------------- /azure/environments/staging-default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/staging-default/kustomization.yaml -------------------------------------------------------------------------------- /azure/environments/staging/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/environments/staging/kustomization.yaml -------------------------------------------------------------------------------- /azure/services/cache/rediscluster/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/services/cache/rediscluster/class.yaml -------------------------------------------------------------------------------- /azure/services/cache/rediscluster/kustomization.yaml: -------------------------------------------------------------------------------- 1 | commonLabels: 2 | provider: azure 3 | resources: 4 | - class.yaml 5 | -------------------------------------------------------------------------------- /azure/services/compute/kubernetescluster/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/services/compute/kubernetescluster/class.yaml -------------------------------------------------------------------------------- /azure/services/compute/kubernetescluster/kustomization.yaml: -------------------------------------------------------------------------------- 1 | commonLabels: 2 | provider: azure 3 | resources: 4 | - class.yaml 5 | -------------------------------------------------------------------------------- /azure/services/database/mysqlinstance/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/services/database/mysqlinstance/class.yaml -------------------------------------------------------------------------------- /azure/services/database/mysqlinstance/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/services/database/mysqlinstance/kustomization.yaml -------------------------------------------------------------------------------- /azure/services/database/postgresqlinstance/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/services/database/postgresqlinstance/class.yaml -------------------------------------------------------------------------------- /azure/services/database/postgresqlinstance/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/services/database/postgresqlinstance/kustomization.yaml -------------------------------------------------------------------------------- /azure/services/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/services/kustomization.yaml -------------------------------------------------------------------------------- /azure/services/storage/bucket/account-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/services/storage/bucket/account-class.yaml -------------------------------------------------------------------------------- /azure/services/storage/bucket/container-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/services/storage/bucket/container-class.yaml -------------------------------------------------------------------------------- /azure/services/storage/bucket/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/azure/services/storage/bucket/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/quickstart/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/quickstart/dev/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/quickstart/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/quickstart/prod/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/app-aws/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/app-aws/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/app-aws/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/app-aws/patch.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/app/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/app/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/app/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/app/patch.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/iamrolepolicyattachment-cluster/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/iamrolepolicyattachment-cluster/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/iamrolepolicyattachment-cluster/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/iamrolepolicyattachment-cluster/patch.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/iamrolepolicyattachment-service/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/iamrolepolicyattachment-service/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/iamrolepolicyattachment-service/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/iamrolepolicyattachment-service/patch.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/patch.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/securitygroup-eks/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/securitygroup-eks/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/securitygroup-eks/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/securitygroup-eks/patch.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/securitygroup-rds/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/securitygroup-rds/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/securitygroup-rds/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/securitygroup-rds/patch.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/subnet-1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/subnet-1/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/subnet-1/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/subnet-1/patch.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/subnet-2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/subnet-2/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/subnet-2/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/subnet-2/patch.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/subnet-3/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/subnet-3/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/aws/subnet-3/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/aws/subnet-3/patch.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/gcp/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/gcp/kustomization.yaml -------------------------------------------------------------------------------- /classpacks/workflow/argo/infra/gcp/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/classpacks/workflow/argo/infra/gcp/patch.yaml -------------------------------------------------------------------------------- /gcp/environments/dev-default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/dev-default/kustomization.yaml -------------------------------------------------------------------------------- /gcp/environments/dev/kubernetescluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/dev/kubernetescluster.yaml -------------------------------------------------------------------------------- /gcp/environments/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/dev/kustomization.yaml -------------------------------------------------------------------------------- /gcp/environments/dev/mysqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/dev/mysqlinstance.yaml -------------------------------------------------------------------------------- /gcp/environments/dev/postgresqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/dev/postgresqlinstance.yaml -------------------------------------------------------------------------------- /gcp/environments/dev/rediscluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/dev/rediscluster.yaml -------------------------------------------------------------------------------- /gcp/environments/full/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/full/kustomization.yaml -------------------------------------------------------------------------------- /gcp/environments/prod-default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/prod-default/kustomization.yaml -------------------------------------------------------------------------------- /gcp/environments/prod/kubernetescluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/prod/kubernetescluster.yaml -------------------------------------------------------------------------------- /gcp/environments/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/prod/kustomization.yaml -------------------------------------------------------------------------------- /gcp/environments/prod/mysqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/prod/mysqlinstance.yaml -------------------------------------------------------------------------------- /gcp/environments/prod/postgresqlinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/prod/postgresqlinstance.yaml -------------------------------------------------------------------------------- /gcp/environments/prod/rediscluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/prod/rediscluster.yaml -------------------------------------------------------------------------------- /gcp/environments/staging-default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/staging-default/kustomization.yaml -------------------------------------------------------------------------------- /gcp/environments/staging/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/environments/staging/kustomization.yaml -------------------------------------------------------------------------------- /gcp/services/cache/rediscluster/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/cache/rediscluster/class.yaml -------------------------------------------------------------------------------- /gcp/services/cache/rediscluster/kustomization.yaml: -------------------------------------------------------------------------------- 1 | commonLabels: 2 | provider: gcp 3 | resources: 4 | - class.yaml 5 | -------------------------------------------------------------------------------- /gcp/services/compute/globaladdress/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/compute/globaladdress/kustomization.yaml -------------------------------------------------------------------------------- /gcp/services/compute/globaladdress/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/compute/globaladdress/resource.yaml -------------------------------------------------------------------------------- /gcp/services/compute/kubernetescluster/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/compute/kubernetescluster/class.yaml -------------------------------------------------------------------------------- /gcp/services/compute/kubernetescluster/kustomization.yaml: -------------------------------------------------------------------------------- 1 | commonLabels: 2 | provider: gcp 3 | resources: 4 | - class.yaml 5 | -------------------------------------------------------------------------------- /gcp/services/compute/network/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/compute/network/kustomization.yaml -------------------------------------------------------------------------------- /gcp/services/compute/network/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/compute/network/resource.yaml -------------------------------------------------------------------------------- /gcp/services/compute/subnetwork/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/compute/subnetwork/kustomization.yaml -------------------------------------------------------------------------------- /gcp/services/compute/subnetwork/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/compute/subnetwork/resource.yaml -------------------------------------------------------------------------------- /gcp/services/database/mysqlinstance/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/database/mysqlinstance/class.yaml -------------------------------------------------------------------------------- /gcp/services/database/mysqlinstance/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/database/mysqlinstance/kustomization.yaml -------------------------------------------------------------------------------- /gcp/services/database/postgresqlinstance/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/database/postgresqlinstance/class.yaml -------------------------------------------------------------------------------- /gcp/services/database/postgresqlinstance/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/database/postgresqlinstance/kustomization.yaml -------------------------------------------------------------------------------- /gcp/services/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/kustomization.yaml -------------------------------------------------------------------------------- /gcp/services/servicenetworking/connection/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/servicenetworking/connection/kustomization.yaml -------------------------------------------------------------------------------- /gcp/services/servicenetworking/connection/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/servicenetworking/connection/resource.yaml -------------------------------------------------------------------------------- /gcp/services/storage/bucket/class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/gcp/services/storage/bucket/class.yaml -------------------------------------------------------------------------------- /gcp/services/storage/bucket/kustomization.yaml: -------------------------------------------------------------------------------- 1 | commonLabels: 2 | provider: gcp 3 | resources: 4 | - class.yaml 5 | -------------------------------------------------------------------------------- /guides/argo-oam/infra/classes/cloudsqlclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/classes/cloudsqlclass.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/classes/gkeclusterclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/classes/gkeclusterclass.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/components/tracker-data-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/components/tracker-data-component.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/components/tracker-db-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/components/tracker-db-component.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/components/tracker-flights-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/components/tracker-flights-component.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/components/tracker-managed-db-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/components/tracker-managed-db-component.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/components/tracker-quakes-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/components/tracker-quakes-component.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/components/tracker-ui-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/components/tracker-ui-component.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/components/tracker-weather-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/components/tracker-weather-component.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/definitions/bucket-workload-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/definitions/bucket-workload-definition.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/definitions/containerized-workload-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/definitions/containerized-workload-definition.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/definitions/kubernetes-cluster-workload-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/definitions/kubernetes-cluster-workload-definition.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/definitions/machine-instance-workload-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/definitions/machine-instance-workload-definition.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/definitions/manual-scaler-trait-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/definitions/manual-scaler-trait-definition.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/definitions/mysql-workload-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/definitions/mysql-workload-definition.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/definitions/nosql-workload-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/definitions/nosql-workload-definition.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/definitions/postgres-workload-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/definitions/postgres-workload-definition.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/definitions/redis-workload-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/definitions/redis-workload-definition.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/kubernetescluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/kubernetescluster.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/network/connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/network/connection.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/network/globaladdress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/network/globaladdress.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/network/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/network/network.yaml -------------------------------------------------------------------------------- /guides/argo-oam/infra/network/subnetwork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/infra/network/subnetwork.yaml -------------------------------------------------------------------------------- /guides/argo-oam/service-tracker/appconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/argo-oam/service-tracker/appconfig.yaml -------------------------------------------------------------------------------- /guides/aws-argo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/README.md -------------------------------------------------------------------------------- /guides/aws-argo/app-1/kubernetesapplication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/app-1/kubernetesapplication.yaml -------------------------------------------------------------------------------- /guides/aws-argo/app-1/mysqlinstanceclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/app-1/mysqlinstanceclaim.yaml -------------------------------------------------------------------------------- /guides/aws-argo/app-2/kubernetesapplication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/app-2/kubernetesapplication.yaml -------------------------------------------------------------------------------- /guides/aws-argo/app-2/mysqlinstanceclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/app-2/mysqlinstanceclaim.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-east-1/eksclusterclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-east-1/eksclusterclass.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-east-1/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-east-1/iam.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-east-1/internetgateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-east-1/internetgateway.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-east-1/kubernetesclusterclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-east-1/kubernetesclusterclaim.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-east-1/rdsinstanceclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-east-1/rdsinstanceclass.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-east-1/routetable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-east-1/routetable.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-east-1/securitygroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-east-1/securitygroup.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-east-1/subnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-east-1/subnet.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-east-1/vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-east-1/vpc.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-west-2/eksclusterclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-west-2/eksclusterclass.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-west-2/iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-west-2/iam.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-west-2/internetgateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-west-2/internetgateway.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-west-2/kubernetesclusterclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-west-2/kubernetesclusterclaim.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-west-2/rdsinstanceclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-west-2/rdsinstanceclass.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-west-2/routetable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-west-2/routetable.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-west-2/securitygroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-west-2/securitygroup.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-west-2/subnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-west-2/subnet.yaml -------------------------------------------------------------------------------- /guides/aws-argo/infra/us-west-2/vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/guides/aws-argo/infra/us-west-2/vpc.yaml -------------------------------------------------------------------------------- /kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossplane/crosscd/HEAD/kustomization.yaml --------------------------------------------------------------------------------