Supertstream Agent (Engine) Deployment using existing secrets
Create Kubernetes Secret
kubectl create secret generic superstream-creds --from-literal=ACTIVATION_TOKEN=<TOKEN> --from-literal=ENCRYPTION_SECRET_KEY=<RANDOM_STRING_OF_32_CHAR> -n superstreamGenerate ENCRYPTION_SECRET_KEY
ENCRYPTION_SECRET_KEYopenssl rand -hex 16Specify the existing secret in custom_values.yaml
custom_values.yamlsuperstreamAgent:
secret:
useExisting: trueFinal Configuration
############################################################
# GLOBAL configuration for Superstream Agent
############################################################
global:
agentName: "" # Define the superstream agent name within 32 characters, excluding '.', and using only lowercase letters, numbers, '-', and '_'.
superstreamAccountId: "" # Provide the account ID associated with the deployment, which could be used for identifying resources or configurations tied to a specific account.
superstreamActivationToken: "" # Enter the activation token required for services or resources that need an initial token for activation or authentication.
############################################################
superstreamAgent:
secret:
useExisting: trueDeploy
Last updated
Was this helpful?

