mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-15 01:08:58 +03:00
17 lines
246 B
Bash
Executable File
17 lines
246 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
KTHW_KUBERNETES_VERSION=v1.15.0
|
|
KTHW_ETCD3_VERSION=v3.3.13
|
|
|
|
cat <<EOF
|
|
{
|
|
"kubernetes_version": "$KTHW_KUBERNETES_VERSION",
|
|
|
|
"etcd3_version": "$KTHW_ETCD3_VERSION",
|
|
|
|
"master": null,
|
|
|
|
"workers": [
|
|
]
|
|
}
|
|
EOF |