Skip to content

Commit

Permalink
Remove files
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha committed Dec 19, 2024
1 parent 87c9c22 commit da83ac6
Show file tree
Hide file tree
Showing 4,252 changed files with 10,038,426 additions and 8 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ run:
docs: hugo-tools
$(HUGO_TOOLS) docs-aggregator --fm-replacements product_stash_=docs_,/products/stash/=/docs/
find ./data -name "*.json" -exec sed -i 's/https:\/\/cdn.appscode.com\/images/\/assets\/images/g' {} \;
rm -rf static/files/cluster-api
rm -rf static/files/cluster-api-provider-aws
rm -rf static/files/cluster-api-provider-azure
rm -rf static/files/cluster-api-provider-gcp
rm -rf static/files/appscode/cluster-api
rm -rf static/files/appscode/cluster-api-provider-aws
rm -rf static/files/appscode/cluster-api-provider-azure
rm -rf static/files/appscode/cluster-api-provider-gcp

.PHONY: docs-skip-assets
docs-skip-assets: hugo-tools
Expand All @@ -20,10 +20,10 @@ docs-skip-assets: hugo-tools
assets: hugo-tools
$(HUGO_TOOLS) docs-aggregator --only-assets --fm-replacements product_stash_=docs_,/products/stash/=/docs/
find ./data -name "*.json" -exec sed -i 's/https:\/\/cdn.appscode.com\/images/\/assets\/images/g' {} \;
rm -rf static/files/cluster-api
rm -rf static/files/cluster-api-provider-aws
rm -rf static/files/cluster-api-provider-azure
rm -rf static/files/cluster-api-provider-gcp
rm -rf static/files/appscode/cluster-api
rm -rf static/files/appscode/cluster-api-provider-aws
rm -rf static/files/appscode/cluster-api-provider-azure
rm -rf static/files/appscode/cluster-api-provider-gcp

.PHONY: gen
gen:
Expand Down
1,076 changes: 1,076 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.0/infrastructure-components.yaml

Large diffs are not rendered by default.

1,103 changes: 1,103 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.1/infrastructure-components.yaml

Large diffs are not rendered by default.

1,199 changes: 1,199 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.10/infrastructure-components.yaml

Large diffs are not rendered by default.

1,106 changes: 1,106 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.2/infrastructure-components.yaml

Large diffs are not rendered by default.

1,121 changes: 1,121 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.3/infrastructure-components.yaml

Large diffs are not rendered by default.

1,121 changes: 1,121 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.4/infrastructure-components.yaml

Large diffs are not rendered by default.

1,121 changes: 1,121 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.5/infrastructure-components.yaml

Large diffs are not rendered by default.

1,121 changes: 1,121 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.6/infrastructure-components.yaml

Large diffs are not rendered by default.

1,121 changes: 1,121 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.7/infrastructure-components.yaml

Large diffs are not rendered by default.

1,130 changes: 1,130 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.8/infrastructure-components.yaml

Large diffs are not rendered by default.

1,173 changes: 1,173 additions & 0 deletions static/files/cluster-api-provider-aws/v0.4.9/infrastructure-components.yaml

Large diffs are not rendered by default.

113 changes: 113 additions & 0 deletions static/files/cluster-api-provider-aws/v0.5.0/cluster-template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
---
apiVersion: cluster.x-k8s.io/v1alpha3
kind: Cluster
metadata:
name: "${CLUSTER_NAME}"
spec:
clusterNetwork:
pods:
cidrBlocks: ["192.168.0.0/16"]
infrastructureRef:
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha3
kind: AWSCluster
name: "${CLUSTER_NAME}"
controlPlaneRef:
kind: KubeadmControlPlane
apiVersion: controlplane.cluster.x-k8s.io/v1alpha3
name: "${CLUSTER_NAME}-control-plane"
---
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha3
kind: AWSCluster
metadata:
name: "${CLUSTER_NAME}"
spec:
region: "${AWS_REGION}"
sshKeyName: "${AWS_SSH_KEY_NAME}"
---
kind: KubeadmControlPlane
apiVersion: controlplane.cluster.x-k8s.io/v1alpha3
metadata:
name: "${CLUSTER_NAME}-control-plane"
spec:
replicas: ${CONTROL_PLANE_MACHINE_COUNT}
infrastructureTemplate:
kind: AWSMachineTemplate
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha3
name: "${CLUSTER_NAME}-control-plane"
kubeadmConfigSpec:
initConfiguration:
nodeRegistration:
name: '{{ ds.meta_data.local_hostname }}'
kubeletExtraArgs:
cloud-provider: aws
clusterConfiguration:
apiServer:
extraArgs:
cloud-provider: aws
controllerManager:
extraArgs:
cloud-provider: aws
joinConfiguration:
nodeRegistration:
name: '{{ ds.meta_data.local_hostname }}'
kubeletExtraArgs:
cloud-provider: aws
version: "${KUBERNETES_VERSION}"
---
kind: AWSMachineTemplate
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha3
metadata:
name: "${CLUSTER_NAME}-control-plane"
spec:
template:
spec:
instanceType: "${AWS_CONTROL_PLANE_MACHINE_TYPE}"
iamInstanceProfile: "control-plane.cluster-api-provider-aws.sigs.k8s.io"
sshKeyName: "${AWS_SSH_KEY_NAME}"
---
apiVersion: cluster.x-k8s.io/v1alpha3
kind: MachineDeployment
metadata:
name: "${CLUSTER_NAME}-md-0"
spec:
clusterName: "${CLUSTER_NAME}"
replicas: ${WORKER_MACHINE_COUNT}
selector:
matchLabels:
template:
spec:
clusterName: "${CLUSTER_NAME}"
version: "${KUBERNETES_VERSION}"
bootstrap:
configRef:
name: "${CLUSTER_NAME}-md-0"
apiVersion: bootstrap.cluster.x-k8s.io/v1alpha3
kind: KubeadmConfigTemplate
infrastructureRef:
name: "${CLUSTER_NAME}-md-0"
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha3
kind: AWSMachineTemplate
---
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha3
kind: AWSMachineTemplate
metadata:
name: "${CLUSTER_NAME}-md-0"
spec:
template:
spec:
instanceType: "${AWS_NODE_MACHINE_TYPE}"
iamInstanceProfile: "nodes.cluster-api-provider-aws.sigs.k8s.io"
sshKeyName: "${AWS_SSH_KEY_NAME}"
---
apiVersion: bootstrap.cluster.x-k8s.io/v1alpha3
kind: KubeadmConfigTemplate
metadata:
name: "${CLUSTER_NAME}-md-0"
spec:
template:
spec:
joinConfiguration:
nodeRegistration:
name: '{{ ds.meta_data.local_hostname }}'
kubeletExtraArgs:
cloud-provider: aws
Loading

0 comments on commit da83ac6

Please sign in to comment.