This website requires JavaScript.
Explore
Help
Sign In
CadolesKube
/
typhoon
mirror of
https://github.com/puppetmaster/typhoon.git
Watch
7
Star
0
Fork
You've already forked typhoon
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
eb08593eae
typhoon
/
bare-metal
/
container-linux
/
kubernetes
/
outputs.tf
4 lines
78 B
Terraform
Raw
Normal View
History
Unescape
Escape
Add admin kubeconfig as a Terraform output * May be used to write a local file
2018-12-16 06:48:08 +01:00
output
"
kubeconfig-admin
"
{
Use a single format of the admin kubeconfig * Use a single admin kubeconfig for initial bootkube bootstrap and for use by a human admin. Previously, an admin kubeconfig without a named context was used for bootstrap and direct usage with KUBECONFIG=path, while one with a named context was used for `kubectl config use-context` style usage. Confusing. * Provide the admin kubeconfig via `assets/auth/kubeconfig`, `assets/auth/CLUSTER-config`, or output `kubeconfig-admin`
2019-01-05 23:36:55 +01:00
value
=
"
${
module
.
bootkube
.
kubeconfig
-
admin
}
"
Add admin kubeconfig as a Terraform output * May be used to write a local file
2018-12-16 06:48:08 +01:00
}