Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SVC2025.3

...

Code Block
languageyml
titlesoavirt-secret.yaml
apiVersion: v1
kind: Secret
metadata:
  name: soavirt-secret
  namespace: parasoft-sv-namespace
type: Opaque
# It is recommended to encrypt password values using the -encodepass CLI option or the encodepass.sh script.
# After encryption, both username and password values must be base64 encoded.
# Example: echo -n "[string]" | base64
# For additional security, see https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/.
data:
  # Specifies username for CTP authentication
  #env.manager.username: [CTP Server Username]

  # Specifies password for CTP authentication
  #env.manager.password: [CTP Server Password]

  # Specifies username for license server authentication
  #license.network.user: [License Server Username]

  # Specifies password for license server authentication
  #license.network.password: [License Server Password]

  # Specifies username for DTP authentication
  #dtp.user: [DTP Server Username]

  # Specifies password for DTP authentication
  #dtp.password: [DTP Server Password]

  # Specifies the client secret that will be used to authenticate the user on the OpenID Connect server
  #oidc.client.secret: [OIDC client secret]

  # Specifies the password to the keystore file used for OpenID Connect authentication
  #oidc.keystore.password: [OIDC keystore password]

Use the yaml file to create the secret for the SOAVirt server:

...