Creating a Dynamic Group and a Policy for Self-Managed Nodes

Find out how to create a dynamic group and a policy to allow the compute instance hosting a self-managed node to join an enhanced cluster created with Container Engine for Kubernetes.

Before you can create self-managed nodes, you have to:

  • create a new dynamic group to contain the compute instance that you want to add to the cluster as a self-managed node
  • create a policy for the dynamic group, with a policy statement to allow compute instances in the dynamic group to join an existing Kubernetes cluster

To create a new dynamic group and a suitable policy using the Console:

  1. Create a new dynamic group to contain the compute instance that you want to add to the cluster as a self-managed node:

    1. Open the navigation menu and click Identity & Security. Under Identity, click Domains. Under Identity domain, click Dynamic groups.
    2. Follow the instructions in To create a dynamic group, and give the dynamic group a name (for example, acme-oke-self-managed-node-dyn-grp).
    3. Enter a rule that includes the compute instances in the compartment, in the format:

      ALL {instance.compartment.id = '<compartment-ocid>'}

      where <compartment-ocid> is the OCID of the compartment to which the cluster belongs.

      For example:

      ALL {instance.compartment.id = 'ocid1.compartment.oc1..aaaaaaaa23______smwa'}
    4. Click Create Dynamic Group.
  2. Create a policy for the dynamic group, with a policy statement to allow compute instances in the dynamic group to join an existing Kubernetes cluster:
    1. Open the navigation menu and click Identity & Security. Under Identity, click Policies.
    2. Follow the instructions in To create a policy, and give the policy a name (for example, acme-oke-self-managed-node-policy).
    3. Enter a policy statement to allow compute instances in the dynamic group to join the cluster, in the format:

      Allow dynamic-group <dynamic-group-name> to {CLUSTER_JOIN} in compartment <compartment-name>
      

      where:

      • <dynamic-group-name> is the name of the dynamic group you created earlier. For example, acme-oke-self-managed-node-dyn-grp
      • <compartment-name> is the name of the compartment to which the cluster belongs. For example, acme-oke-cluster-compartment

      For example:

      Allow dynamic-group acme-oke-self-managed-node-dyn-grp to {CLUSTER_JOIN} in compartment acme-oke-cluster-compartment

      If you consider this policy statement to be too permissive, you can restrict the permissions to explicitly specify the cluster to which you want to add the managed node, by entering a policy statement in the format:

      Allow dynamic-group <dynamic-group-name> to {CLUSTER_JOIN} in compartment <compartment-name>
      where { target.cluster.id = "<cluster-ocid>" }
    4. Click Create to create the new policy.