Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
apiVersion: v1
kind: Secret
metadata:
  name: oci-profile
type: Opaque
stringData:
  tenancy: "your tenancy ocid"<tenancy_ocid from terraform output>
  user: "your user ocid"<user_ocid configured in terraform.tfvars>
  region: "your region"<region from terraform output>
  fingerprint: <fingerprint "yourconfigured key fingerprint"in terraform.tfvars>
  privateKey: |
    -----BEGIN RSA PRIVATE KEY-----
    ...KEY DATA HERE...
    -----END RSA PRIVATE KEY-----
  privateKeyPassphrase: "private keys passphrase or empty string if none"
 

...

Code Block
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
  name: lb-cert
spec:
  commonName: <cluster_dns_zone_name listed in thefrom terraform output>
  dnsNames:
    - <cluster_dns_zone_name listed in thefrom terraform output>
    - desktop-online.<cluster_dns_zone_name listed infrom the terraform output>
    - platform.<cluster_dns_zone_name listed infrom the terraform output>
    - ingress.<cluster_dns_zone_name listedfrom in the terraform output>
    - grafana.<cluster_dns_zone_name listedfrom in the terraform output>
  issuerRef:
    kind: ClusterIssuer
    name: example-issuer
  secretName: lb-cert

...

Code Block
languageyaml
oci:
  certificates:
    enabled: false
  backendNSG: <backend_nsg from terraform output>
  healthcheck:
    desktoponline:
      port: 9001
    ingressnginx:
      port: 443  
environment: oci
global:
  domain: <cluster_dns_zone_name from terraform output>
  ingressController:
    serviceName: ingress-nginx-controller
  imagePullSecrets:
  - name: ecr-cred  
licenseKey: <insert-your-license-key-string-here>
log:
  format: json
platform:
  db:
    type: postgresql
  tls:
    cert:
      public: certManager
    certManager:
      public:
        issuer:
          kind: ClusterIssuer
          name: example-issuer
    enabled: true    
postgres:
  adminUsername: postgres
  host: <db_endpoint from >terraform output>
  port: <db_port from terraform output>
persistence:
  enabled: true
  existingClaim: fss-pvc

The descriptions of the different values below, will help you Below you can find information on how you can determine the values to set in your particular installation:

...