forked from kubernetes-sigs/kubespray
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
102 additions
and
6 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## To use AWS EBS CSI Driver to provision volumes, uncomment the first value | ||
## and configure the parameters below | ||
# aws_ebs_csi_enabled: true | ||
# aws_ebs_csi_enable_volume_scheduling: true | ||
# aws_ebs_csi_enable_volume_snapshot: false | ||
# aws_ebs_csi_enable_volume_resizing: false | ||
# aws_ebs_csi_controller_replicas: 1 | ||
# aws_ebs_csi_plugin_image_tag: latest |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
# Please see roles/container-engine/containerd/defaults/main.yml for more configuration options | ||
|
||
# containerd_config: | ||
# grpc: | ||
# max_recv_message_size: 16777216 | ||
# max_send_message_size: 16777216 | ||
# debug: | ||
# level: "" | ||
# registries: | ||
# "docker.io": "https://registry-1.docker.io" | ||
# max_container_log_line_size: -1 | ||
# metrics: | ||
# address: "" | ||
# grpc_histogram: false |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
download_run_once: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## GCP compute Persistent Disk CSI Driver credentials and parameters | ||
## See docs/gcp-pd-csi.md for information about the implementation | ||
|
||
## Specify the path to the file containing the service account credentials | ||
# gcp_pd_csi_sa_cred_file: "/my/safe/credentials/directory/cloud-sa.json" | ||
|
||
## To enable GCP Persistent Disk CSI driver, uncomment below | ||
# gcp_pd_csi_enabled: true | ||
# gcp_pd_csi_controller_replicas: 1 | ||
# gcp_pd_csi_driver_image_tag: "v0.7.0-gke.0" |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
# private interface, on a l2-network | ||
macvlan_interface: "eth1" | ||
|
||
# Enable nat in default gateway network interface | ||
enable_nat_default_gateway: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
node_labels: | ||
node-role.kubernetes.io/ingress: "true" | ||
node-role.kubernetes.io/ingress: "" | ||
node_taints: | ||
- "node-role.kubernetes.io/ingress=:NoSchedule" |