@@ -15,65 +15,60 @@ import (
1515)
1616
1717const (
18- AssetPathSecrets = "tls"
19- AssetPathCAKey = "tls/ca.key"
20- AssetPathCACert = "tls/ca.crt"
21- AssetPathAPIServerKey = "tls/apiserver.key"
22- AssetPathAPIServerCert = "tls/apiserver.crt"
23- AssetPathEtcdCA = "tls/etcd-ca.crt"
24- AssetPathEtcdClientCert = "tls/etcd-client.crt"
25- AssetPathEtcdClientKey = "tls/etcd-client.key"
26- AssetPathEtcdPeerCert = "tls/etcd-peer.crt"
27- AssetPathEtcdPeerKey = "tls/etcd-peer.key"
28- AssetPathSelfHostedOperatorEtcdCA = "tls/operator/etcd-client-ca.crt"
29- AssetPathSelfHostedOperatorEtcdCert = "tls/operator/etcd-client.crt"
30- AssetPathSelfHostedOperatorEtcdKey = "tls/operator/etcd-client.key"
31- AssetPathSelfHostedEtcdMemberClientCA = "tls/etcdMember/server-ca.crt"
32- AssetPathSelfHostedEtcdMemberClientCert = "tls/etcdMember/server.crt"
33- AssetPathSelfHostedEtcdMemberClientKey = "tls/etcdMember/server.key"
34- AssetPathSelfHostedEtcdMemberPeerCA = "tls/etcdMember/peer-ca.crt"
35- AssetPathSelfHostedEtcdMemberPeerCert = "tls/etcdMember/peer.crt"
36- AssetPathSelfHostedEtcdMemberPeerKey = "tls/etcdMember/peer.key"
37- AssetPathServiceAccountPrivKey = "tls/service-account.key"
38- AssetPathServiceAccountPubKey = "tls/service-account.pub"
39- AssetPathKubeletKey = "tls/kubelet.key"
40- AssetPathKubeletCert = "tls/kubelet.crt"
41- AssetPathKubeConfig = "auth/kubeconfig"
42- AssetPathManifests = "manifests"
43- AssetPathKubelet = "manifests/kubelet.yaml"
44- AssetPathProxy = "manifests/kube-proxy.yaml"
45- AssetPathKubeFlannel = "manifests/kube-flannel.yaml"
46- AssetPathKubeFlannelCfg = "manifests/kube-flannel-cfg.yaml"
47- AssetPathKubeCalico = "manifests/kube-calico.yaml"
48- AssetPathKubeCalicoCfg = "manifests/kube-calico-cfg.yaml"
49- AssetPathKubeCalcioSA = "manifests/kube-calico-sa.yaml"
50- AssetPathKubeCalcioRole = "manifests/kube-calico-role.yaml"
51- AssetPathKubeCalcioRoleBinding = "manifests/kube-calico-role-binding.yaml"
52- AssetPathAPIServerSecret = "manifests/kube-apiserver-secret.yaml"
53- AssetPathAPIServer = "manifests/kube-apiserver.yaml"
54- AssetPathControllerManager = "manifests/kube-controller-manager.yaml"
55- AssetPathControllerManagerSecret = "manifests/kube-controller-manager-secret.yaml"
56- AssetPathControllerManagerDisruption = "manifests/kube-controller-manager-disruption.yaml"
57- AssetPathScheduler = "manifests/kube-scheduler.yaml"
58- AssetPathSchedulerDisruption = "manifests/kube-scheduler-disruption.yaml"
59- AssetPathKubeDNSDeployment = "manifests/kube-dns-deployment.yaml"
60- AssetPathKubeDNSSvc = "manifests/kube-dns-svc.yaml"
61- AssetPathSystemNamespace = "manifests/kube-system-ns.yaml"
62- AssetPathCheckpointer = "manifests/pod-checkpointer.yaml"
63- AssetPathEtcdOperator = "manifests/etcd-operator.yaml"
64- AssetPathSelfHostedEtcdOperatorSecret = "manifests/etcd-operator-client-tls.yaml"
65- AssetPathSelfHostedEtcdMemberPeerSecret = "manifests/etcd-member-peer-tls.yaml"
66- AssetPathSelfHostedEtcdMemberCliSecret = "manifests/etcd-member-client-tls.yaml"
67- AssetPathEtcdSvc = "manifests/etcd-service.yaml"
68- AssetPathKenc = "manifests/kube-etcd-network-checkpointer.yaml"
69- AssetPathKubeSystemSARoleBinding = "manifests/kube-system-rbac-role-binding.yaml"
70- AssetPathBootstrapManifests = "bootstrap-manifests"
71- AssetPathBootstrapAPIServer = "bootstrap-manifests/bootstrap-apiserver.yaml"
72- AssetPathBootstrapControllerManager = "bootstrap-manifests/bootstrap-controller-manager.yaml"
73- AssetPathBootstrapScheduler = "bootstrap-manifests/bootstrap-scheduler.yaml"
74- AssetPathBootstrapEtcd = "bootstrap-manifests/bootstrap-etcd.yaml"
75- AssetPathBootstrapEtcdService = "etcd/bootstrap-etcd-service.json"
76- AssetPathMigrateEtcdCluster = "etcd/migrate-etcd-cluster.json"
18+ AssetPathSecrets = "tls"
19+ AssetPathCAKey = "tls/ca.key"
20+ AssetPathCACert = "tls/ca.crt"
21+ AssetPathAPIServerKey = "tls/apiserver.key"
22+ AssetPathAPIServerCert = "tls/apiserver.crt"
23+ AssetPathEtcdClientCA = "tls/etcd-client-ca.crt"
24+ AssetPathEtcdClientCert = "tls/etcd-client.crt"
25+ AssetPathEtcdClientKey = "tls/etcd-client.key"
26+ AssetPathEtcdServerCA = "tls/etcd/server-ca.crt"
27+ AssetPathEtcdServerCert = "tls/etcd/server.crt"
28+ AssetPathEtcdServerKey = "tls/etcd/server.key"
29+ AssetPathEtcdPeerCA = "tls/etcd/peer-ca.crt"
30+ AssetPathEtcdPeerCert = "tls/etcd/peer.crt"
31+ AssetPathEtcdPeerKey = "tls/etcd/peer.key"
32+ AssetPathServiceAccountPrivKey = "tls/service-account.key"
33+ AssetPathServiceAccountPubKey = "tls/service-account.pub"
34+ AssetPathKubeletKey = "tls/kubelet.key"
35+ AssetPathKubeletCert = "tls/kubelet.crt"
36+ AssetPathKubeConfig = "auth/kubeconfig"
37+ AssetPathManifests = "manifests"
38+ AssetPathKubelet = "manifests/kubelet.yaml"
39+ AssetPathProxy = "manifests/kube-proxy.yaml"
40+ AssetPathKubeFlannel = "manifests/kube-flannel.yaml"
41+ AssetPathKubeFlannelCfg = "manifests/kube-flannel-cfg.yaml"
42+ AssetPathKubeCalico = "manifests/kube-calico.yaml"
43+ AssetPathKubeCalicoCfg = "manifests/kube-calico-cfg.yaml"
44+ AssetPathKubeCalcioSA = "manifests/kube-calico-sa.yaml"
45+ AssetPathKubeCalcioRole = "manifests/kube-calico-role.yaml"
46+ AssetPathKubeCalcioRoleBinding = "manifests/kube-calico-role-binding.yaml"
47+ AssetPathAPIServerSecret = "manifests/kube-apiserver-secret.yaml"
48+ AssetPathAPIServer = "manifests/kube-apiserver.yaml"
49+ AssetPathControllerManager = "manifests/kube-controller-manager.yaml"
50+ AssetPathControllerManagerSecret = "manifests/kube-controller-manager-secret.yaml"
51+ AssetPathControllerManagerDisruption = "manifests/kube-controller-manager-disruption.yaml"
52+ AssetPathScheduler = "manifests/kube-scheduler.yaml"
53+ AssetPathSchedulerDisruption = "manifests/kube-scheduler-disruption.yaml"
54+ AssetPathKubeDNSDeployment = "manifests/kube-dns-deployment.yaml"
55+ AssetPathKubeDNSSvc = "manifests/kube-dns-svc.yaml"
56+ AssetPathSystemNamespace = "manifests/kube-system-ns.yaml"
57+ AssetPathCheckpointer = "manifests/pod-checkpointer.yaml"
58+ AssetPathEtcdOperator = "manifests/etcd-operator.yaml"
59+ AssetPathEtcdSvc = "manifests/etcd-service.yaml"
60+ AssetPathEtcdClientSecret = "manifests/etcd-client-tls.yaml"
61+ AssetPathEtcdPeerSecret = "manifests/etcd-peer-tls.yaml"
62+ AssetPathEtcdServerSecret = "manifests/etcd-server-tls.yaml"
63+ AssetPathKenc = "manifests/kube-etcd-network-checkpointer.yaml"
64+ AssetPathKubeSystemSARoleBinding = "manifests/kube-system-rbac-role-binding.yaml"
65+ AssetPathBootstrapManifests = "bootstrap-manifests"
66+ AssetPathBootstrapAPIServer = "bootstrap-manifests/bootstrap-apiserver.yaml"
67+ AssetPathBootstrapControllerManager = "bootstrap-manifests/bootstrap-controller-manager.yaml"
68+ AssetPathBootstrapScheduler = "bootstrap-manifests/bootstrap-scheduler.yaml"
69+ AssetPathBootstrapEtcd = "bootstrap-manifests/bootstrap-etcd.yaml"
70+ AssetPathBootstrapEtcdService = "etcd/bootstrap-etcd-service.json"
71+ AssetPathMigrateEtcdCluster = "etcd/migrate-etcd-cluster.json"
7772)
7873
7974var (
0 commit comments