mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Remove kustomize output
Remove the kustomize output file Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
This commit is contained in:
parent
48aa236488
commit
a4e8ed93c1
1 changed files with 0 additions and 121 deletions
|
|
@ -1,121 +0,0 @@
|
|||
apiVersion: bootstrap.cluster.x-k8s.io/v1alpha2
|
||||
kind: KubeadmConfig
|
||||
metadata:
|
||||
name: capi-quickstart-controlplane-0
|
||||
spec:
|
||||
clusterConfiguration:
|
||||
apiServer:
|
||||
extraArgs:
|
||||
cloud-provider: aws
|
||||
controllerManager:
|
||||
extraArgs:
|
||||
cloud-provider: aws
|
||||
initConfiguration:
|
||||
nodeRegistration:
|
||||
kubeletExtraArgs:
|
||||
cloud-provider: aws
|
||||
name: '{{ ds.meta_data.hostname }}'
|
||||
---
|
||||
apiVersion: bootstrap.cluster.x-k8s.io/v1alpha2
|
||||
kind: KubeadmConfigTemplate
|
||||
metadata:
|
||||
name: capi-quickstart-worker
|
||||
spec:
|
||||
template:
|
||||
spec:
|
||||
joinConfiguration:
|
||||
nodeRegistration:
|
||||
kubeletExtraArgs:
|
||||
cloud-provider: aws
|
||||
name: '{{ ds.meta_data.hostname }}'
|
||||
---
|
||||
apiVersion: cluster.x-k8s.io/v1alpha2
|
||||
kind: Cluster
|
||||
metadata:
|
||||
name: usw2-cluster-1
|
||||
spec:
|
||||
clusterNetwork:
|
||||
pods:
|
||||
cidrBlocks:
|
||||
- 192.168.0.0/16
|
||||
infrastructureRef:
|
||||
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha2
|
||||
kind: AWSCluster
|
||||
name: usw2-cluster-1
|
||||
---
|
||||
apiVersion: cluster.x-k8s.io/v1alpha2
|
||||
kind: Machine
|
||||
metadata:
|
||||
labels:
|
||||
cluster.x-k8s.io/cluster-name: usw2-cluster1
|
||||
cluster.x-k8s.io/control-plane: "true"
|
||||
name: usw2-cluster1-cp0
|
||||
spec:
|
||||
bootstrap:
|
||||
configRef:
|
||||
apiVersion: bootstrap.cluster.x-k8s.io/v1alpha2
|
||||
kind: KubeadmConfig
|
||||
name: usw2-cluster1-cp0
|
||||
infrastructureRef:
|
||||
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha2
|
||||
kind: AWSMachine
|
||||
name: usw2-cluster1-cp0
|
||||
version: v1.15.3
|
||||
---
|
||||
apiVersion: cluster.x-k8s.io/v1alpha2
|
||||
kind: MachineDeployment
|
||||
metadata:
|
||||
labels:
|
||||
cluster.x-k8s.io/cluster-name: usw2-cluster1
|
||||
nodepool: nodepool-0
|
||||
name: capi-quickstart-worker
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
cluster.x-k8s.io/cluster-name: usw2-cluster1
|
||||
nodepool: nodepool-0
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
cluster.x-k8s.io/cluster-name: usw2-cluster1
|
||||
nodepool: nodepool-0
|
||||
spec:
|
||||
bootstrap:
|
||||
configRef:
|
||||
apiVersion: bootstrap.cluster.x-k8s.io/v1alpha2
|
||||
kind: KubeadmConfigTemplate
|
||||
name: capi-quickstart-worker
|
||||
infrastructureRef:
|
||||
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha2
|
||||
kind: AWSMachineTemplate
|
||||
name: capi-quickstart-worker
|
||||
version: v1.15.3
|
||||
---
|
||||
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha2
|
||||
kind: AWSCluster
|
||||
metadata:
|
||||
name: usw2-cluster-1
|
||||
spec:
|
||||
region: us-west-2
|
||||
sshKeyName: usw2_rsa_key
|
||||
---
|
||||
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha2
|
||||
kind: AWSMachine
|
||||
metadata:
|
||||
name: usw2-cluster1-cp0
|
||||
spec:
|
||||
iamInstanceProfile: controllers.cluster-api-provider-aws.sigs.k8s.io
|
||||
instanceType: t3.large
|
||||
sshKeyName: usw2_rsa_key
|
||||
---
|
||||
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha2
|
||||
kind: AWSMachineTemplate
|
||||
metadata:
|
||||
name: capi-quickstart-worker
|
||||
spec:
|
||||
template:
|
||||
spec:
|
||||
iamInstanceProfile: nodes.cluster-api-provider-aws.sigs.k8s.io
|
||||
instanceType: t3.large
|
||||
sshKeyName: default
|
||||
Loading…
Reference in a new issue