mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
091e3b2b2b
Also move helmloader interface/stubs
18 lines
436 B
Go
18 lines
436 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package k8sapi
|
|
|
|
const (
|
|
// Paths and permissions necessary for Kubernetes installation.
|
|
cniPluginsDir = "/opt/cni/bin"
|
|
binDir = "/run/state/bin"
|
|
kubeadmPath = "/run/state/bin/kubeadm"
|
|
kubeletPath = "/run/state/bin/kubelet"
|
|
kubeletServicePath = "/usr/lib/systemd/system/kubelet.service"
|
|
executablePerm = 0o544
|
|
)
|