primazactl
is a simple Command Line Application for Primaza Administrators.
The current implementation provides:
For information about primaza see: Primaza readme
- Clone this repository
- Run:
make primazactl
- Tool will be available in
out/venv3/bin/primazactl
- For example, from the repository root directory:
out/venv3/bin/primazactl create tenant primaza-system
- python
- kubectl installed and a kube-apiserver available.
- docker
- a cluster for the tenant and a cluster to join to the tenant.
- get two kind clusters by running
make kind-cluster
.- tenant cluster:
- default cluster name is primazactl-tenant-test.
- set environment variable
KIND_CLUSTER_TENANT_NAME
to overwrite. - the configuration file used when creating the cluster is
scripts/src/primazatest/config/kind-main.yaml
. - set environment variable
TENANAT_KIND_CONFIG_FILE
to overwrite.
- join cluster:
- default cluster name is primazactl-join-test.
- set environment variable
KIND_CLUSTER_JOIN_NAME
to overwrite. - the configuration file used when creating the cluster is
scripts/src/primazatest/config/kind-worker.yaml
. - set environment variable
JOIN_KIND_CONFIG_FILE
to overwrite.
- For information on kind see : (kind quick start)[https://kind.sigs.k8s.io/docs/user/quick-start/].
- tenant cluster:
- get two kind clusters by running
- a certificate manager available in the cluster on which primaza tenant will be installed.
make kind cluster
installs a certificate manager.
Some commands may need to use GitHub's API, e.g. to fetch Primaza's manifests.
GitHub's limits for anonymous calls to its API is very strict.
To increase the limit, you need to authenticate.
primazactl
can authorize requests by fetching the GITHUB_TOKEN
environment variable and using its content to authenticate with GitHub.
The GITHUB_TOKEN
environment variable needs to contain a valid GitHub Personal Access Token.
Primazactl help is organized in a hierarchy with contextual help available for different commands:
primazactl --help
primazactl create --help
primazactl create tenant --help
primazactl join --help
primazactl join cluster --help
primazactl create application-namespace --help
primazactl create service-namespace --help
primazactl options --help
- Create tenant
- checks user has the permissions required to run the command.
- if not, create tenant is not performed, and a message is output with details of missing permissions.
- creates a specified namespace, default is
primaza-system
.- control-plane
primaza-controller-manager
- default image installed:
ghcr.io/primaza/primaza:latest
- control-plane
- adds kubernetes resources required by primaza tenant.
- checks user has the permissions required to run the command.
- Join cluster
- requires tenant to be created first.
- checks user has the permissions required to run the command.
- if not, join cluster is not performed, and a message is output with details of missing permissions.
- add kubernetes resources required to join a cluster.
- creates an identity which is shared with the primaza tenant.
- creates a cluster-environment resource in primaza tenant to enable communication with the joined cluster.
- Create application-namespace.
- requires join cluster to be complete first.
- checks user has the permissions required to run the command.
- if not, create application-namespace is not performed, and a message is output with details of missing permissions.
- creates a specified namespace, default is
primaza-application
. - creates an identity in the primaza tenant namespace which is shared with the application namespace.
- enables primaza tenant to access the namespace
- creates a service account for the application-namespace to access kubernetes resources.
- provides join cluster primaza service account with access to the namespace
- Create service-namespace.
- requires join cluster to be complete first.
- checks user has the permissions required to run the command.
- if not, create service-namespace is not performed, and a message is output with details of missing permissions.
- creates a specified namespace, default is
primaza-service
. - creates an identity in the primaza tenant namespace which is shared with the service namespace.
- enables primaza tenant to access the namespace
- creates two service accounts for the service-namespace to access kubernetes resources based on two different roles.
- provides join cluster service account with access to the namespace
- Apply.
- combines each of the four other commands into a single command.
- reads required values from a specified options file.
- processes everything defined in the file. If all are specified:
- creates a tenant, joins cluster, creates application and service namespaces.
usage: primazactl create tenant [-h] [-x] [-f CONFIG] [-v VERSION] [-p OPTIONS_FILE] [-c CONTEXT] [-k KUBECONFIG] [-y {client,server,none}]
[-o {yaml,none}]
[tenant]
positional arguments:
tenant tenant to create. Default: primaza-system
options:
-h, --help show this help message and exit
-x, --verbose Set for verbose output
-f CONFIG, --config CONFIG
primaza config file. Takes precedence over --version
-v VERSION, --version VERSION
Version of primaza to use, default: latest. Ignored if --config is set.
-p OPTIONS_FILE, --options OPTIONS_FILE
primaza options file in which default command line options are specified. Options set on the command line take precedence.
-c CONTEXT, --context CONTEXT
name of cluster, as it appears in kubeconfig, on which to create the tenant, default: current kubeconfig context
-k KUBECONFIG, --kubeconfig KUBECONFIG
path to kubeconfig file, default: KUBECONFIG environment variable if set, otherwise /<home-directory>/.kube/config
-y {client,server,none}, --dry-run {client,server,none}
Set for dry run (default: none)
-o {yaml,none}, --output {yaml,none}
Set to get output of resources which are created (default: none).
tenant
- Namespace to use for the tenant.
- Required.
--config CONFIG
:- CONFIG: the manifest file for installing primaza main
- To generate a suitable manifest file:
- Run
make config
from the repository - The manifest will be created:
out/config/primaza_config_latest.yaml
- The manifest file sets the namespace to
primaza-system
- The manifest file sets the image to
ghcr.io/primaza/primaza:latest
- Set the environment variable
IMG
before running make to overwrite the image used.
- Set the environment variable
- Run
--context CONTEXT
:- CONTEXT: the cluster, as it appears in kubeconfig, on which to install primaza tenant.
- To create a kind cluster to use for testing:
- Run
make kind-cluster
- The cluster created for main install is
primazactl-tenant-test
- Set the environment variable
KIND_CLUSTER_TENANT_NAME
before running make to overwrite the name of the cluster created.
- The cluster created for main install is
- Run
- If using kind, prepend
kind-
to the cluster name.
--kubeconfig KUBECONFIG
- The kubeconfig file is not modified by primazactl.
- The cluster specified for main install does not have to be the current context.
- Default: KUBECONFIG environment variable if set, otherwise //.kube/config
--version VERSION
- Specify the version of manifests to use.
- see: releases for available versions.
- Ignored if a config file is set.
- defaults to the version used to build primazactl.
- Specify the version of manifests to use.
--options
- An options file with default values for creating a tenant.
- Any values from the file can be overwritten with the equivalent command line option.
--output yaml
- Outputs the manifests of the resources that are created.
- The content will be as used for creating the resource.
- Use with
--dry-run client
to get output without creating resources. - Default is
none
- no output is produced.
--dry-run {server,client,none}
- If set to
server
- Resources will be created with dry-run and will not be persisted.
- Output provides the outcome for each resource created.
- If set to
client
- No output produced.
- Use in conjunction with
--output--
to get output without creating resources.
- Default: none - resources are persisted.
- If set to
Notes:
- Requires a primaza tenant.
- It allows any namespace to be used, the namespace should already be created before using this. The default namespace used is named
kube-system
.
usage: primazactl join cluster [-h] [-x] [-f CONFIG] [-v VERSION] [-p OPTIONS_FILE] [-c CONTEXT] [-k KUBECONFIG] [-u INTERNAL_URL] -d CLUSTER_ENVIRONMENT
[-e ENVIRONMENT] [-l TENANT_KUBECONFIG] [-m TENANT_CONTEXT] [-t TENANT] [-y {client,server,none}] [-o {yaml,none}] [-j SERVICE_ACCOUNT_NAMESPACE]
options:
-h, --help show this help message and exit
-x, --verbose Set for verbose output
-f CONFIG, --config CONFIG
primaza config file. Takes precedence over --version
-v VERSION, --version VERSION
Version of primaza to use, default: latest. Ignored if --config is set.
-p OPTIONS_FILE, --options OPTIONS_FILE
primaza options file in which default command line options are specified. Options set on the command line take precedence.
-c CONTEXT, --context CONTEXT
name of cluster, as it appears in kubeconfig, to join, default: current kubeconfig context
-k KUBECONFIG, --kubeconfig KUBECONFIG
path to kubeconfig file, default: KUBECONFIG environment variable if set, otherwise /<home-directory>/.kube/config
-u INTERNAL_URL, --internal-url INTERNAL_URL
the url used by Primaza's Control Plane to reach the joined cluster
-d CLUSTER_ENVIRONMENT, --cluster-environment CLUSTER_ENVIRONMENT
name to use for the ClusterEnvironment that will be created in Primaza
-e ENVIRONMENT, --environment ENVIRONMENT
the Environment that will be associated to the ClusterEnvironment
-l TENANT_KUBECONFIG, --tenant-kubeconfig TENANT_KUBECONFIG
path to kubeconfig file for the tenant, default: KUBECONFIG environment variable if set, otherwise
/<home-directory>/.kube/config
-m TENANT_CONTEXT, --tenant-context TENANT_CONTEXT
name of cluster, as it appears in kubeconfig, on which primaza tenant was created. Default: current kubeconfig context
-t TENANT, --tenant TENANT
tenant to use for join. Default: primaza-system
-y {client,server,none}, --dry-run {client,server,none}
Set for dry run (default: none)
-o {yaml,none}, --output {yaml,none}
Set to get output of resources which are created (default: none).
-j SERVICE_ACCOUNT_NAMESPACE, --service-account-namespace SERVICE_ACCOUNT_NAMESPACE
name to be used for the WorkerNamespace which already exists.
Default: kube-system
--config CONFIG
:- CONFIG contains the manifest file for the join cluster.
- To generate a suitable manifest file:
- Run
make config
from the repository - The manifest will be created:
out/config/worker_config_latest.yaml
- Run
--context CONTEXT
:- CONTEXT: the cluster, as it appears in kubeconfig, of the join cluster.
- To create a kind cluster to use for testing:
- Run
make kind-cluster
- The cluster created for the worker is
primazactl-join-test
- Set the environment variable
KIND_CLUSTER_JOIN_NAME
before running make to overwrite the name of the cluster created.
- The cluster created for the worker is
- Run
- If using kind, prepend
kind-
to the cluster name. - Can use the same cluster as used for main install.
-internal-url INTERNAL_URL
- the url that will be used by the Control Plane to reach the joined cluster
--kubeconfig KUBECONFIG
- The kubeconfig file is not modified by primazactl.
- The cluster specified for worker join does not have to be the current context.
- Default: KUBECONFIG environment variable if set, otherwise //.kube/config
--version VERSION
- Specify the version of manifests to use.
- see: releases for available versions.
- Ignored if a config file is set.
- defaults to the version used to build primazactl.
- Specify the version of manifests to use.
--cluster-environment CLUSTER_ENVIRONMENT
- name to be used for the cluster environment resource created in the primaza-main namespace.
- This option is required.
--environment ENVIRONMENT
- the name that will be associated to the ClusterEnvironment.
- This option is required
- either as a command line option
- or from an options file specified using
--options
.
--tenant-kubeconfig TENANT_KUBECONFIG
- path to kubeconfig file for the tenant
- default: KUBECONFIG environment variable if set, otherwise //.kube/config
--tenant-context TENANT_CONTEXT
- only set if cluster on which primaza tenant is installed is different from the one set using the
--context
option.
- only set if cluster on which primaza tenant is installed is different from the one set using the
--tenant tenant
- Tenant used for the join.
- Default is
primaza-system
.
--options
- An options file with default values for joining a cluster.
- Any values from the file can be overwritten with the equivalent command line option.
--output yaml
- Outputs the manifests of the resources that are created.
- The content will be as used for creating the resource.
- Use with
--dry-run client
to get output without creating resources. - Default is
none
- no output is produced.
--dry-run {server,client,none}
- If set to
server
- Resources will be created with dry-run and will not be persisted.
- Output provides the outcome for each resource created.
- If set to
client
- No output produced.
- Use in conjunction with
--output--
to get output without creating resources.
- Default: none - resources are persisted.
- If set to
--service-account-namespace SERVICE_ACCOUNT_NAMESPACE
- name to be used for the WorkerNamespace that will be created.
- Default is
kube-system
Notes:
- requires join cluster to be completed.
usage: primazactl create application-namespace [-h] [-x] -d CLUSTER_ENVIRONMENT [-c CONTEXT] [-m TENANT_CONTEXT] [-f CONFIG] [-t TENANT]
[-u TENANT_INTERNAL_URL] [-v VERSION] [-k KUBECONFIG] [-l TENANT_KUBECONFIG] [-p OPTIONS_FILE]
[-y {client,server,none}] [-o {yaml,none}]
namespace
positional arguments:
namespace namespace to create
options:
-h, --help show this help message and exit
-x, --verbose Set for verbose output
-d CLUSTER_ENVIRONMENT, --cluster-environment CLUSTER_ENVIRONMENT
name to use for the ClusterEnvironment that will be created in Primaza
-c CONTEXT, --context CONTEXT
name of cluster, as it appears in kubeconfig, on which to create the service or application namespace, default: current
kubeconfig context
-m TENANT_CONTEXT, --tenant-context TENANT_CONTEXT
name of cluster, as it appears in kubeconfig, on which Primaza tenant was created. Default: current kubeconfig context
-f CONFIG, --config CONFIG
Config file containing agent roles
-t TENANT, --tenant TENANT
tenant to use. Default: primaza-system
-u TENANT_INTERNAL_URL, --tenant-internal-url TENANT_INTERNAL_URL
Internal URL for the cluster on which Primaza's Control Plane is running
-v VERSION, --version VERSION
Version of primaza to use, default: latest. Ignored if --config is set.
-k KUBECONFIG, --kubeconfig KUBECONFIG
path to kubeconfig file, default: KUBECONFIG environment variable if set, otherwise /<home-directory>/.kube/config
-l TENANT_KUBECONFIG, --tenant-kubeconfig TENANT_KUBECONFIG
path to kubeconfig file for the tenant, default: KUBECONFIG environment variable if set, otherwise
/<home-directory>/.kube/config
-p OPTIONS_FILE, --options OPTIONS_FILE
primaza options file in which default command line options are specified. Options set on the command line take precedence.
-y {client,server,none}, --dry-run {client,server,none}
Set for dry run (default: none)
-o {yaml,none}, --output {yaml,none}
Set to get output of resources which are created (default: none).
namespace
- Namespace to use for application agent.
- Required.
--context CONTEXT
- CONTEXT: the cluster, as it appears in kubeconfig, on which primaza-worker is installed
--cluster-environment CLUSTER_ENVIRONMENT
- Used in the name of the primaza main indentity.
--tenant-context TENANT_CONTEXT
- Name of cluster, as it appears in kubeconfig, on which Primaza main is installed. Default: current kubeconfig context
--config CONFIG
- Config file containing thr manifests for application agent roles.
- To generate a suitable config file:
- Run
make config
from the repository - The config will be created:
out/config/application_agent_config_latest.yaml
- Run
--tenant TENANT
- tenant to use.
- Default is
primaza-system
.
--tenant-internal-url TENANT_INTERNAL_URL
- The URL the Application Agent will use to contact the cluster on which Primaza's Control Plane is running
--version VERSION
- Specify the version of manifests to use.
- see: releases for available versions.
- Ignored if a config file is set.
- Default is the version used to build primazactl.
- Specify the version of manifests to use.
--kubeconfig KUBECONFIG
- The kubeconfig file is not modified by primazactl.
- The cluster specified for worker join does not have to be the current context.
- default: KUBECONFIG environment variable if set, otherwise //.kube/config
--tenant-kubeconfig TENANT_KUBECONFIG
- path to kubeconfig file for the tenant
- default: KUBECONFIG environment variable if set, otherwise //.kube/config
--options
- An options file with default values for creating an application namespace.
- Any values from the file can be overwritten with the equivalent command line option.
--output yaml
- Outputs the manifests of the resources that are created.
- The content will be as used for creating the resource.
- Use with
--dry-run client
to get output without creating resources. - Default is
none
- no output is produced.
--dry-run {server,client,none}
- If set to
server
- Resources will be created with dry-run and will not be persisted.
- Output provides the outcome for each resource created.
- If set to
client
- No output produced.
- Use in conjunction with
--output--
to get output without creating resources.
- Default: none - resources are persisted.
- If set to
Notes:
- requires join cluster to be completed.
usage: primazactl create service-namespace [-h] [-x] -d CLUSTER_ENVIRONMENT [-c CONTEXT] [-m TENANT_CONTEXT] [-f CONFIG] [-t TENANT]
[-u TENANT_INTERNAL_URL] [-v VERSION] [-k KUBECONFIG] [-l TENANT_KUBECONFIG] [-p OPTIONS_FILE]
[-y {client,server,none}] [-o {yaml,none}]
namespace
positional arguments:
namespace namespace to create
options:
-h, --help show this help message and exit
-x, --verbose Set for verbose output
-d CLUSTER_ENVIRONMENT, --cluster-environment CLUSTER_ENVIRONMENT
name to use for the ClusterEnvironment that will be created in Primaza
-c CONTEXT, --context CONTEXT
name of cluster, as it appears in kubeconfig, on which to create the service or application namespace, default: current
kubeconfig context
-m TENANT_CONTEXT, --tenant-context TENANT_CONTEXT
name of cluster, as it appears in kubeconfig, on which Primaza tenant was created. Default: current kubeconfig context
-f CONFIG, --config CONFIG
Config file containing agent roles
-t TENANT, --tenant TENANT
tenant to use. Default: primaza-system
-u TENANT_INTERNAL_URL, --tenant-internal-url TENANT_INTERNAL_URL
Internal URL for the cluster on which Primaza's Control Plane is running
-v VERSION, --version VERSION
Version of primaza to use, default: latest. Ignored if --config is set.
-k KUBECONFIG, --kubeconfig KUBECONFIG
path to kubeconfig file, default: KUBECONFIG environment variable if set, otherwise /<home-directory>/.kube/config
-l TENANT_KUBECONFIG, --tenant-kubeconfig TENANT_KUBECONFIG
path to kubeconfig file for the tenant, default: KUBECONFIG environment variable if set, otherwise
/<home-directory>/.kube/config
-p OPTIONS_FILE, --options OPTIONS_FILE
primaza options file in which default command line options are specified. Options set on the command line take precedence.
-y {client,server,none}, --dry-run {client,server,none}
Set for dry run (default: none)
-o {yaml,none}, --output {yaml,none}
Set to get output of resources which are created (default: none).
namespace
- Namespace to use for service agent.
--context CONTEXT
- CONTEXT: the cluster, as it appears in kubeconfig, on which primaza-worker is installed
--cluster-environment CLUSTER_ENVIRONMENT
- Used in the name of the primaza main indentity.
--tenant-context TENANT_CONTEXT
- name of cluster, as it appears in kubeconfig, on which Primaza main is installed. Default: current kubeconfig context
--config CONFIG
- Config file containing thr manifests for application agent roles.
- To generate a suitable config file:
- Run
make config
from the repository - The config will be created:
out/config/service_agent_config_latest.yaml
- Run
--main-namespace MAIN_NAMESPACE
- Namespace of primaza-main.
- Default is
primaza-system
.
--version VERSION
- Specify the version of manifests to use.
- see: releases for available versions.
- Ignored if a config file is set.
- Defaults to the version used to build primazactl.
- Specify the version of manifests to use.
--kubeconfig KUBECONFIG
- The kubeconfig file is not modified by primazactl.
- The cluster specified for worker join does not have to be the current context.
--tenant TENANT
- tenant to use.
- Default is
primaza-system
.
--tenant-internal-url TENANT_INTERNAL_URL
- The URL the Application Agent will use to contact the cluster on which Primaza's Control Plane is running
--tenant-kubeconfig TENANT_KUBECONFIG
path to kubeconfig file for the tenant, default: KUBECONFIG environment variable if set, otherwise //.kube/config--options
- An options file with default values for creating a service namespace.
- Any values from the file can be overwritten with the equivalent command line option.
--output yaml
- Outputs the manifests of the resources that are created.
- The content will be as used for creating the resource.
- Use with
--dry-run client
to get output without creating resources. - Default is
none
- no output is produced.
--dry-run {server,client,none}
- If set to
server
- Resources will be created with dry-run and will not be persisted.
- Output provides the outcome for each resource created.
- If set to
client
- No output produced.
- Use in conjunction with
--output--
to get output without creating resources.
- Default: none - resources are persisted.
- If set to
The options file define a tenant, one or more cluster environments each with one or more application and/or service namespaces. It can include all of the information required by primazactl to install from the content.
apiVersion: primaza.io/v1alpha1
kind: Tenant
name: primaza-alice
manifestDirectory: ./out/config
version: latest
controlPlane:
context: kind-primazactl-tenant-test
kubeconfig: ~/.kube/config
internalUrl:
clusterEnvironments:
- name: worker-alice
environment: test
targetCluster:
context: kind-primazactl-join-test
internalUrl:
kubeconfig: ~/.kube/config
applicationNamespaces:
- name: alice-app
serviceNamespaces:
- name: alice-svc
usage: primazactl apply [-h] [-x] -p OPTIONS_FILE [-y {client,server,none}] [-o {yaml,none}]
options:
-h, --help show this help message and exit
-x, --verbose Set for verbose output
-p OPTIONS_FILE, --options OPTIONS_FILE
primaza options file in which command line options are specified. All options in the file will be processed.
-y {client,server,none}, --dry-run {client,server,none}
Set for dry run (default: none)
-o {yaml,none}, --output {yaml,none}
Set to get output of resources which are created (default: none).
--options
- An options with values for creating primaza resources.
- The entire contents will be processed.
- A tenant will be created in the primaza control plane.
- One or more cluster environments will be created
- For each cluster environment:
- One or more application namespace will be created.
- One or more service namespaces will be created.
--output yaml
- Outputs the manifests of the resources that are created.
- The content will be as used for creating the resource.
- Use with
--dry-run client
to get output without creating resources. - Default is
none
- no output is produced.
--dry-run {server,client,none}
- If set to
server
- Resources will be created with dry-run and will not be persisted.
- Output provides the outcome for each resource created.
- If set to
client
- No output produced.
- Use in conjunction with
--output--
to get output without creating resources.
- Default: none - resources are persisted.
- If set to
- To run the basic tests run
make test-local
- This will:
- run
make setup-test
- run the test:
out/venv3/bin/primazatest
- src script is
scripts/src/promazatest/runtest.sh
- requires inputs: python virtual environment directory, the primaza configuration file and the cluster names.
- src script is
- run
- This will:
- To run the test with users run
make test-users
- This will:
- run
make setup-test
- run
make create-users
- run the test:
out/venv3/bin/primazatest -u
- src script is
scripts/src/primazatest/runtest.sh
- requires inputs: python virtual environment directory, the primaza configuration file and the cluster names.
- src script is
- To run the test for dry-run run
make test-dry-run
- This will:
- run
make setup-test
- run the test:
out/venv3/bin/primazatest -d
- src script is
scripts/src/primazatest/runtest.sh
- requires inputs: python virtual environment directory, the primaza configuration file, the cluster names and an options file.
- src script is
- To run the test for output of resources run
make test-output
- This will:
- run
make setup-test
- run the test:
out/venv3/bin/primazatest -o
- src script is
scripts/src/primazatest/runtest.sh
- requires inputs: python virtual environment directory, the primaza configuration file and the cluster names.
- src script is
- To run the test for the apply command file run "make test-apply"
- This will:
- run
make setup-test
- run the test:
out/venv3/bin/primazatest -t
- src script is
scripts/src/primazatest/runtest.sh
- requires inputs: python virtual environment directory, an options file.
- src script is
- run
- This will:
- To set up the test environment run
make setup-test
- This will run in order:
make clean
- deletes:
- test clusters,
- generated config files.
- python virtual environment.
- deletes:
kind-cluster
- Creates two kind clusters
primazactl-main-test
- used to install primaza main by the tests
- set environment variable
KIND_MAIN_CONTEXT
to overwrite. - a configuration file is used when creating the cluster
- The file used if
scripts/src/primazatest/config/kind-main.yaml
. - set environment variable
MAIN_KIND_CONFIG_FILE
to overwrite.
- The file used if
primazactl-worker-test
- used by the tests:
- worker join.
- worker create application-namespace.
- worker create service-namespace.
- set environment variable
KIND_WORKER_CONTEXT
to overwrite. - a configuration file is used when creating the cluster
- The file used if
scripts/src/primazatest/config/kind-worker.yaml
. - set environment variable
WORKER_KIND_CONFIG_FILE
to overwrite.
- The file used if
- used by the tests:
- Creates two kind clusters
make primazactl
- creates a python virtual environment from which primazactl can be invoked.
- default directory is
out/venv1
- set environment variable
PYTHON_VENV_DIR
to overwrite.
- set environment variable
make config
- Creates primaza configuration files required by pimazactl.
- clones the primaza repository.
- uses kustomize to create config files:
out/config/primaza_config_latest.yaml
- Sets the namespace to
primaza-system
- Sets the image to
ghcr.io/primaza/primaza:latest
- Set the environment variable
IMG
before running make to overwrite the image used.
- Set the environment variable
- Sets the namespace to
out/config/worker_config_latest.yaml
out/config/application_agent_config_latest.yaml
- namespace is set to
primaza-application
- Set the environment variable
APPLICATION_NAMESPACE
before running make to overwrite the namesapce used.
- Set the environment variable
- namespace is set to
out/config/service_agent_config_latest.yaml
- namespace is set to
primaza-service
- Set the environment variable
SERVICE_NAMESPACE
before running make to overwrite the namesapce used.
- Set the environment variable
- namespace is set to
- Creates primaza configuration files required by pimazactl.
- This will run in order: