NetScaler Console service

Install a NetScaler agent operator using the OpenShift console

An operator is an open source toolkit that enables you to deploy and manage the Kubernetes applications in an effective, automated, and scalable way. As an administrator, you can deploy an agent in the OpenShift cluster using the NetScaler ADM Agent Operator.

Note:

An agent configured in the OpenShift cluster is not automatically upgraded by default.

Prerequisites

Before you deploy, ensure that:

  • You have the privileged security context constraints to control permissions for pods. For the agent, run the following command to get the privilege security context constraints to the service account:

    oc adm policy add-scc-to-user privileged -z adm-agent-serviceaccount

  • Run the following command to create an Agent login secret:

    kubectl create secret generic admlogin --from-literal=username=nsroot --from-literal=password=<adm-agent-password> -n <namespace>

    Note:

    • <adm-agent-password> is an example password. You must set a password for the agent and NetScaler CPX uses these credentials to register with the Agent.

    • Provide admlogin for loginSecret in the agent YAML while creating the instance.

    If you are deploying NetScaler CPX and agent in different namespaces, ensure to:

    • Label namespace with citrix-cpx=enabled in which the NetScaler CPX has been deployed.

    • Set helper.required true or false while installing the agent operator.

      Note:

      By default, helper.required is set to false. If this parameter is set to false, you must ensure to create admlogin secret in every namespace if NetScaler CPX and agent are in different namespaces.

  • You have accessSecret that is required in the agent YAML. These credentials are required for the agent to connect with NetScaler Console service.

    kubectl create secret generic <secretname> --from-literal=accessid=<ID> --from-literal=accesssecret=<Secret> -n namespace

    Note:

    Provide a secret name for accessSecret in agent YAML while creating the instance.

    You can get access ID and secret for accessing the NetScaler Console from the following procedure:

    1. Log on to the Citrix Cloud management console.

    2. From the Citrix Cloud menu, select Identity and Access Management.

      Identity and access management

    3. From the API Access tab, enter a secure client name and click Create Client.

      API access

    4. ID and Secret are generated. Click Download and save the CSV file.

      ID and secret file

Install the Agent Operator

  1. Log on to the OpenShift cluster console.

  2. Navigate to Operators > OperatorHub.

  3. In the search bar, provide the agent name and select the NetScaler ADM Agent Operator and then click Install.

    Agent operator

  4. In the Install Operator page, you have two options:

    • All namespaces on the cluster (default) - Enables the Agent operator to subscribe to all namespaces available in the cluster and allows you to initiate the instance of agent operator from any namespace on the cluster.

    • A specific namespace on the cluster - Enables the Agent operator to subscribe to a selected namespace on the cluster and you can initiate the instance of agent operator only from the selected namespace.

      In this example, the Agent operator is assigned to a namespace called Default. Select Automatic under Update approval, and click Install.

      Install

      Wait until the Agent operator is successfully subscribed.

      Subscribed

  5. Navigate to Workloads > Pods and verify that the netscaler-adm-agent-operator-controller pod is up and running.

  6. After the pod is up and running, click Create Instance.

    Create instance

  7. Select the YAML view to update any parameters and then click Create.

    Note:

    Ensure that there must be only one instance of agent per OpenShift cluster.

    YAML view

  8. Navigate to Workloads > Pods and ensure that the agent pods are up and running.

    Verify pod

Delete an agent instance

You can delete the instance of agent from the cluster by navigating to Operators > Installed Operators. In the NetScaler ADM Agent Operator tab, select the instance, and select Delete AdmAgent from the list.

Delete

Uninstall the agent operator

If you want to uninstall the agent operator pod from the cluster, navigate to Operators > Installed Operators, and then select Uninstall Operator from the list.

Uninstall operator

Install a NetScaler agent operator using the OpenShift console