etcd.template 756 B

12345678910111213141516
  1. {{ template "base" .KubeHome }}
  2. readonly ETCD_APISERVER_CA_KEY={{.CAKey}}
  3. readonly ETCD_APISERVER_CA_CERT={{.CACert}}
  4. readonly ETCD_APISERVER_SERVER_KEY={{.APIServerKey}}
  5. readonly ETCD_APISERVER_SERVER_CERT={{.APIServerCert}}
  6. readonly ETCD_APISERVER_CLIENT_KEY={{.ETCDKey}}
  7. readonly ETCD_APISERVER_CLIENT_CERT={{.ETCDCert}}
  8. readonly ETCD_SERVERS={{.ETCDServers}}
  9. readonly ETCD_APISERVER_CA_CERT_PATH={{.CACertPath}}
  10. readonly ETCD_APISERVER_CLIENT_CERT_PATH={{.APIServerCertPath}}
  11. readonly ETCD_APISERVER_CLIENT_KEY_PATH={{.APIServerKeyPath}}
  12. readonly ETCD_SERVERS_OVERRIDES={{.ETCDServersOverride}}
  13. readonly STORAGE_BACKEND={{.StorageBackend}}
  14. readonly STORAGE_MEDIA_TYPE={{.StorageMediaType}}
  15. readonly ETCD_COMPACTION_INTERVAL_SEC={{.CompactionInterval}}