Permissions

The Kubernetes agent uses service accounts to manage access to cluster objects.

There are 3 main components that run with different permissions in the Kubernetes agent:

  • Agent Pod - This is the main component and is responsible for receiving work from Octopus Server and scheduling it in the cluster.
  • Script Pods - These are run to execute work on the cluster. When Octopus issues work to the agent, the Tentacle will schedule a pod to run the script to execute the required work. These are short-lived, single-use pods which are removed by Tentacle when they are complete.
  • NFS Server Pod - This optional component is used if no StorageClass is specified during installation.

Agent Pod Permissions

The agent pod uses a service account which only allows the agent to create, view and modify pods, pod logs, config maps, and secrets in the agent namespace. Adjusting these permissions is not supported.

Variable NameDescriptionDefault Value
agent.serviceAccount.nameThe name of the agent service account<agent-name>-tentacle
agent.serviceAccount.annotationsAnnotations given to the service account[]

Script Pod Permissions

By default, the script pods (the pods which run your deployment steps) are given cluster wide admin access to deploy any and all cluster objects in any namespaces as configured in your deployment processes.

The service account for script pods can be customized in a few ways:

Variable NameDescriptionDefault Value
scriptPods.serviceAccount.targetNamespacesLimit the namespaces that the service account can interact with.[]
(When empty, all namespaces are allowed.)
scriptPods.serviceAccount.clusterRole.rulesGive the service account custom rules
- apiGroups:
  - ’*’
  resources:
  - ’*’
  verbs:
  - ’*’
- nonResourceURLs:
  - ’*’
  verbs:
  - ’*‘
scriptPods.serviceAccount.nameThe name of the scriptPods service account<agent-name>-tentacle
scriptPods.serviceAccount.annotationsAnnotations given to the service account[]

Examples

Target Namespaces

scriptPods.serviceAccount.targetNamespaces


command:

helm upgrade --install --atomic \
--set scriptPods.serviceAccount.targetNamespaces="{development,preproduction}" \
--set agent.acceptEula="Y" \
--set agent.targetName="Nonproduction Agent" \
--set agent.serverUrl="http://localhost:5000/" \
--set agent.serverCommsAddress="http://localhost:10943/" \
--set agent.space="Default" \
--set agent.targetEnvironments="{Development,Preproduction}" \
--set agent.targetRoles="{k8s-cluster-tag}" \
--set agent.bearerToken="XXXX" \
--version "1.*.*" \
--create-namespace --namespace octopus-agent-my-agent \
my-agent\
oci://registry-1.docker.io/octopusdeploy/kubernetes-agent
Cluster Role Rules

scriptPods.serviceAccount.clusterRole.rules


values.yaml:

scriptPods:
  serviceAccount:
    clusterRole:
      rules:
        - apiGroups:
          - '*'
          resources:
          - 'configmaps'
          - 'deployments'
          - 'services'
          verbs:
          - '*'
        - nonResourceURLs:
          - '*'
          verbs:
          - '*'

agent:
  acceptEula: 'Y'
  targetName: 'No Secret Access Production Agent'
  serverUrl: 'http://localhost:5000/'
  serverCommsAddress: 'http://localhost:10943/'
  space: 'Default'
  targetEnvironments:
    - 'Production'
  targetRoles:
    - 'k8s-cluster-tag'
  bearerToken: 'XXXX'

command:

helm upgrade --install --atomic \
--values values.yaml \
--version "1.*.*" \
--create-namespace --namespace octopus-agent-my-agent\
my-agent \
oci://registry-1.docker.io/octopusdeploy/kubernetes-agent

NFS Server Pod Permissions

If you have not provided a predefined storageClassName for persistence, an NFS pod will be used. This NFS Server pod requires privileged access. For more information see Kubernetes agent Storage.

Help us continuously improve

Please let us know if you have any feedback about this page.

Send feedback

Page updated on Monday, April 29, 2024