Documentation ¶
Overview ¶
Package constants defines constant values used throughout the DevWorkspace Operator
Index ¶
Constants ¶
View Source
const ( // DevWorkspaceStorageTypeAttribute defines the strategy used for provisioning storage for the workspace. // If empty, the common PVC strategy is used. // Supported options: // - "common": Create one PVC per namespace, and store data for all workspaces in that namespace in that PVC // - "async" : Create one PVC per namespace, and create a remote server that syncs data from workspaces to the PVC. // All volumeMounts used for devworkspaces are emptyDir // - "per-workspace": Create one PVC per workspace, delete that PVC when the workspace is deleted. // - "ephemeral": Use emptyDir volumes for all volumes in the DevWorkspace. All data is lost when the workspace is // stopped. DevWorkspaceStorageTypeAttribute = "controller.devfile.io/storage-type" // ExternalDevWorkspaceConfiguration is an attribute that allows for specifying an (optional) external DevWorkspaceOperatorConfig // which will merged with the internal/global DevWorkspaceOperatorConfig. The DevWorkspaceOperatorConfig resulting from the merge will be used for the workspace. // The fields which are set in the external DevWorkspaceOperatorConfig will overwrite those existing in the // internal/global DevWorkspaceOperatorConfig during the merge. // The structure of the attribute value should contain two strings: name and namespace. // 'name' specifies the metadata.name of the external operator configuration. // 'namespace' specifies the metadata.namespace of the external operator configuration . // For example: // // attributes: // controller.devfile.io/devworkspace-config: // name: external-dwoc-name // namespace: some-namespace ExternalDevWorkspaceConfiguration = "controller.devfile.io/devworkspace-config" // RuntimeClassNameAttribute is an attribute added to a DevWorkspace to specify a runtimeClassName for container // components in the DevWorkspace (pod.spec.runtimeClassName). If empty, no runtimeClassName is added. RuntimeClassNameAttribute = "controller.devfile.io/runtime-class" // WorkspaceEnvAttribute is an attribute that specifies a set of environment variables provided by a component // that should be added to all workspace containers. The structure of the attribute value should be a list of // Devfile 2.0 EnvVar, e.g. // // attributes: // workspaceEnv: // - name: ENV_1 // value: VAL_1 // - name: ENV_2 // value: VAL_2 WorkspaceEnvAttribute = "workspaceEnv" // WorkspaceSCCAttribute defines additional SCCs that should be added to the DevWorkspace. The user adding // this attribute to a workspace must have the RBAC permissions to "use" the SCC with the given name. For example, // to add the 'anyuid' SCC to the workspace Pod, the DevWorkspace should contain // // spec: // template: // attributes: // controller.devfile.io/scc: "anyuid" // // Creating a workspace with this attribute, or updating an existing workspace to include this attribute will fail // if the user making the request does not have the "use" permission for the "anyuid" SCC. // Only supported on OpenShift. WorkspaceSCCAttribute = "controller.devfile.io/scc" // ProjectCloneAttribute configures how the DevWorkspace will treat project cloning. By default, an init container // will be added to the workspace deployment to clone projects to the workspace before it starts. This attribute // must be applied to top-level attributes field in the DevWorkspace. // Supported options: // - "disable" - Disable automatic project cloning. No init container will be added to the workspace and projects // will not be cloned into the workspace on start. ProjectCloneAttribute = "controller.devfile.io/project-clone" // PluginSourceAttribute is an attribute added to components, commands, and projects in a flattened // DevWorkspace representation to signify where the respective component came from (i.e. which plugin // or parent imported it) PluginSourceAttribute = "controller.devfile.io/imported-by" // EndpointURLAttribute is an attribute added to endpoints to denote the endpoint on the cluster that // was created to route to this endpoint EndpointURLAttribute = "controller.devfile.io/endpoint-url" )
Constants that are used in attributes on DevWorkspace elements (components, endpoints, etc.)
View Source
const ( DefaultProjectsSourcesRoot = "/projects" ServiceAccount = "devworkspace" SidecarDefaultMemoryLimit = "128M" SidecarDefaultMemoryRequest = "64M" SidecarDefaultCpuLimit = "" // do not provide any value SidecarDefaultCpuRequest = "" // do not provide any value PVCStorageSize = "10Gi" // DevWorkspaceIDLoggerKey is the key used to log workspace ID in the reconcile DevWorkspaceIDLoggerKey = "devworkspace_id" // ControllerServiceAccountNameEnvVar stores the name of the serviceaccount used in the controller. ControllerServiceAccountNameEnvVar = "CONTROLLER_SERVICE_ACCOUNT_NAME" // PVCCleanupPodMemoryLimit is the memory limit used for PVC clean up pods PVCCleanupPodMemoryLimit = "100Mi" // PVCCleanupPodMemoryRequest is the memory request used for PVC clean up pods PVCCleanupPodMemoryRequest = "32Mi" // PVCCleanupPodCPULimit is the cpu limit used for PVC clean up pods PVCCleanupPodCPULimit = "50m" // PVCCleanupPodCPURequest is the cpu request used for PVC clean up pods PVCCleanupPodCPURequest = "5m" // Resource limits/requests for project cloner init container ProjectCloneMemoryLimit = "1Gi" ProjectCloneMemoryRequest = "128Mi" ProjectCloneCPULimit = "1000m" ProjectCloneCPURequest = "100m" // CommonStorageClassType defines the 'common' storage policy, which is an alias of the 'per-user' storage policy, and operates in the same fashion as the 'per-user' storage policy. // The 'common' storage policy exists only for legacy compatibility. CommonStorageClassType = "common" // PerUserStorageClassType defines the 'per-user' storage policy -- one PVC is provisioned per namespace and all devworkspace storage // is mounted in it on subpaths according to devworkspace ID. PerUserStorageClassType = "per-user" // AsyncStorageClassType defines the 'asynchronous' storage policy. An rsync sidecar is added to devworkspaces that uses SSH to connect // to a storage deployment that mounts a common PVC for the namespace. AsyncStorageClassType = "async" // EphemeralStorageClassType defines the 'ephemeral' storage policy: all volumes are allocated as emptyDir volumes and // so do not require cleanup. When a DevWorkspace is stopped, all local changes are lost. EphemeralStorageClassType = "ephemeral" // PerWorkspaceStorageClassType defines the 'per-workspace' storage policy: a PVC is provisioned for each workspace within the namespace. // All of the workspace's storage (volume mounts) are mounted on subpaths within the workspace's PVC. PerWorkspaceStorageClassType = "per-workspace" // CheCommonPVCName is the name of the common PVC equivalent used by Che. If present in the namespace, this PVC is mounted instead // of the default PVC when the 'common' or 'async' storage classes are used. CheCommonPVCName = "claim-che-workspace" // ProjectCloneDisable specifies that project cloning should be disabled. ProjectCloneDisable = "disable" )
Internal constants
View Source
const ( // DevWorkspaceNamespace contains env var name which value is the current namespace where DevWorkspace CR // and related objects live DevWorkspaceNamespace = "DEVWORKSPACE_NAMESPACE" // DevWorkspaceId contains env var name which which value is the .status.devworkspaceId of the related // DevWorkspace CR. It can be used to list related objects with WorkspaceIDLabel selector DevWorkspaceId = "DEVWORKSPACE_ID" // DevWorkspaceName contains env var name which value is name of the related DevWorkspace CR. // It can be used to list related objects with WorkspaceNameLabel selector DevWorkspaceName = "DEVWORKSPACE_NAME" // DevWorkspaceCreator contains env var name which value is the uid of the identity who created the related devworkspace DevWorkspaceCreator = "DEVWORKSPACE_CREATOR" // DevWorkspaceIdleTimeout contains env var name which value is the suggested idle timeout DevWorkspaceIdleTimeout = "DEVWORKSPACE_IDLE_TIMEOUT" // DevWorkspaceComponentName contains env var name which indicates from which devfile container component // the container is created from. Note the flattened devfile is used to evaluate it. DevWorkspaceComponentName = "DEVWORKSPACE_COMPONENT_NAME" )
View Source
const ( // StorageCleanupFinalizer is used to block DevWorkspace deletion when it is necessary // to clean up persistent storage used for the workspace. StorageCleanupFinalizer = "storage.controller.devfile.io" // ServiceAccountCleanupFinalizer is used to block DevWorkspace deletion when it is // necessary to clean up additional non-workspace roles added to the workspace // serviceaccount ServiceAccountCleanupFinalizer = "serviceaccount.controller.devfile.io" )
View Source
const ( // DevWorkspaceIDLabel is the label key to store workspace identifier DevWorkspaceIDLabel = "controller.devfile.io/devworkspace_id" // WorkspaceIdOverrideAnnotation is an annotation that can be applied to DevWorkspaces // to override the default DevWorkspace ID assigned by the Operator. Is only respected // when a DevWorkspace is created. Once a DevWorkspace has an ID set, it cannot be changed. WorkspaceIdOverrideAnnotation = "controller.devfile.io/devworkspace_id_override" // DevWorkspaceCreatorLabel is the label key for storing the UID of the user who created the workspace DevWorkspaceCreatorLabel = "controller.devfile.io/creator" // DevWorkspaceNameLabel is the label key to store workspace name DevWorkspaceNameLabel = "controller.devfile.io/devworkspace_name" // DevWorkspaceWatchConfigMapLabel marks a configmap so that it is watched by the controller. This label is required on all // configmaps that should be seen by the controller DevWorkspaceWatchConfigMapLabel = "controller.devfile.io/watch-configmap" // DevWorkspaceWatchSecretLabel marks a secret so that it is watched by the controller. This label is required on all // secrets that should be seen by the controller DevWorkspaceWatchSecretLabel = "controller.devfile.io/watch-secret" // DevWorkspaceMountLabel is the label key to store if a configmap, secret, or PVC should be mounted to the devworkspace DevWorkspaceMountLabel = "controller.devfile.io/mount-to-devworkspace" // DevWorkspaceGitCredentialLabel is the label key to specify if the secret is a git credential. All secrets who // specify this label in a namespace will consolidate into one secret before mounting into a devworkspace. // Only secret data with the credentials key will be used and credentials must be the base64 encoded version // of https://{USERNAME}:{PERSONAL_ACCESS_TOKEN}@{GIT_WEBSITE} // E.g. echo -n "https://{USERNAME}:{PERSONAL_ACCESS_TOKEN}@{GIT_WEBSITE}" | base64 // see https://git-scm.com/docs/git-credential-store#_storage_format for more details DevWorkspaceGitCredentialLabel = "controller.devfile.io/git-credential" // DevWorkspaceGitTLSLabel is the label key to specify if the configmap is credentials for accessing a git server. // Configmap must contain the following data: // certificate: the certificate used to access the git server in Base64 ASCII // You can also optionally define the git host. // host: the url of the git server // If the git host is not defined then the certificate will be used for all http repositories. DevWorkspaceGitTLSLabel = "controller.devfile.io/git-tls-credential" // DevWorkspaceMountPathAnnotation is the annotation key to store the mount path for the secret or configmap. // If no mount path is provided, configmaps will be mounted at /etc/config/<configmap-name>, secrets will // be mounted at /etc/secret/<secret-name>, and persistent volume claims will be mounted to /tmp/<claim-name> DevWorkspaceMountPathAnnotation = "controller.devfile.io/mount-path" // DevWorkspaceMountAsAnnotation is the annotation key to configure the way how configmaps or secrets should be mounted. // Supported options: // - "env" - mount as environment variables // - "file" - mount as files within the mount path // - "subpath" - mount keys as subpath volume mounts within the mount path // When a configmap or secret is mounted via "file", the keys within the configmap/secret are mounted as files // within a directory, erasing all contents of the directory. Mounting via "subpath" leaves existing files in the // mount directory changed, but prevents on-cluster changes to the configmap/secret propagating to the container // until it is restarted. // If mountAs is not provided, the default behaviour will be to mount as a file. DevWorkspaceMountAsAnnotation = "controller.devfile.io/mount-as" // DevWorkspaceMountAsEnv is the annotation value for DevWorkspaceMountAsAnnotation to mount the resource as environment variables // via envFrom DevWorkspaceMountAsEnv = "env" // DevWorkspaceMountAsFile is the annotation value for DevWorkspaceMountAsAnnotation to mount the resource as files DevWorkspaceMountAsFile = "file" // DevWorkspaceMountAsSubpath is the annotation value for DevWorkspaceMountAsAnnotation to mount the resource as files using subpath // mounts DevWorkspaceMountAsSubpath = "subpath" // DevWorkspaceMountReadyOnlyAnnotation is an annotation to configure whether a mounted volume is as read-write or // as read-only. If "true", the volume is mounted as read-only. PersistentVolumeClaims are by default mounted // read-write. Automounted configmaps and secrets are always mounted read-only and this annotation is ignored. DevWorkspaceMountReadyOnlyAnnotation = "controller.devfile.io/read-only" // DevWorkspaceRestrictedAccessAnnotation marks the intention that devworkspace access is restricted to only the creator; setting this // annotation will cause devworkspace start to fail if webhooks are disabled. // Operator also propagates it to the devworkspace-related objects to perform authorization. DevWorkspaceRestrictedAccessAnnotation = "controller.devfile.io/restricted-access" // DevWorkspaceStartedStatusAnnotation is applied to subresources of DevWorkspaces to indicate the owning object's // .spec.started value. This annotation is applied to DevWorkspaceRoutings to trigger reconciles when a DevWorkspace // is started or stopped. DevWorkspaceStartedStatusAnnotation = "controller.devfile.io/devworkspace-started" // DevWorkspaceStopReasonAnnotation marks the reason why the devworkspace was stopped; when a devworkspace is restarted // this annotation will be cleared DevWorkspaceStopReasonAnnotation = "controller.devfile.io/stopped-by" // DevWorkspaceDebugStartAnnotation enables debugging workspace startup if set to "true". If a workspace with this annotation // fails to start (i.e. enters the "Failed" phase), its deployment will not be scaled down in order to allow viewing logs, etc. DevWorkspaceDebugStartAnnotation = "controller.devfile.io/debug-start" // WebhookRestartedAtAnnotation holds the the time (unixnano) of when the webhook server was forced to restart by controller WebhookRestartedAtAnnotation = "controller.devfile.io/restarted-at" // DevWorkspaceStartedAtAnnotation holds the the time (unixnano) of when the devworkspace was started DevWorkspaceStartedAtAnnotation = "controller.devfile.io/started-at" // RoutingAnnotationInfix is the infix of the annotations of DevWorkspace that are passed down as annotation to the DevWorkspaceRouting objects. // The full annotation name is supposed to be "<routingClass>.routing.controller.devfile.io/<anything>" RoutingAnnotationInfix = ".routing.controller.devfile.io/" // DevWorkspaceEndpointNameAnnotation is the annotation key for storing an endpoint's name from the devfile representation DevWorkspaceEndpointNameAnnotation = "controller.devfile.io/endpoint_name" // DevWorkspaceDiscoverableServiceAnnotation marks a service in a devworkspace as created for a discoverable endpoint, // as opposed to a service created to support the devworkspace itself. DevWorkspaceDiscoverableServiceAnnotation = "controller.devfile.io/discoverable-service" // DevWorkspacePullSecretLabel marks the intention that this secret should be used as a pull secret for devworkspaces within namespace // Only secrets with 'true' value will be mount as pull secret // Should be assigned to secrets with type docker config types (kubernetes.io/dockercfg and kubernetes.io/dockerconfigjson) DevWorkspacePullSecretLabel = "controller.devfile.io/devworkspace_pullsecret" // NamespacedConfigLabelKey is a label applied to configmaps to mark them as a configuration for all DevWorkspaces in // the current namespace. NamespacedConfigLabelKey = "controller.devfile.io/namespaced-config" // NamespacePodTolerationsAnnotation is an annotation applied to a namespace to configure pod tolerations for all workspaces // in that namespace. Value should be json-encoded []corev1.Toleration struct. NamespacePodTolerationsAnnotation = "controller.devfile.io/pod-tolerations" // NamespaceNodeSelectorAnnotation is an annotation applied to a namespace to configure the node selector for all workspaces // in that namespace. Value should be json-encoded map[string]string NamespaceNodeSelectorAnnotation = "controller.devfile.io/node-selector" )
Constants that are used in labels and annotations on DevWorkspace-related resources.
Variables ¶
View Source
var ControllerAppLabels = func() map[string]string { return map[string]string{ "app.kubernetes.io/name": "devworkspace-controller", "app.kubernetes.io/part-of": "devworkspace-operator", } }
Labels which should be used for controller related objects
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.