mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-21 23:58:06 +00:00
5f34058dc7
* add yamllint command to travis CI installs and runs a linter across the YAML in the project to ensure consistency in the written YAML. this uses yamllint and the default yamllint config with "truthy" and "line-length" disabled. * run dos2unix on CRLF files * YAMLLINT: remove trailing spaces * YAMLLint: add YAML document start * YAMLLint: too many spaces around bracket * YAMLLint: fix indentation * YAMLLint: remove duplicate key * YAMLLint: newline at end of file * YAMLLint: Too few spaces after comma * YAMLLint: too many spaces after colon
20 lines
473 B
YAML
20 lines
473 B
YAML
---
|
|
apiVersion: kind.sigs.k8s.io/v1alpha3
|
|
kind: Cluster
|
|
networking:
|
|
apiServerAddress: "0.0.0.0"
|
|
|
|
kubeadmConfigPatchesJson6902:
|
|
- group: kubelet.config.k8s.io
|
|
version: v1beta1
|
|
kind: KubeletConfiguration
|
|
patch: |
|
|
- op: add
|
|
path: /tlsCipherSuites
|
|
value: ["TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256","TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"]
|
|
|
|
nodes:
|
|
# the control plane node config
|
|
- role: control-plane
|
|
image: "kindest/node:v1.14.6"
|