Uploaded image for project: 'Connectivity Link'
  1. Connectivity Link
  2. CONNLINK-313

[RHCL doc] Wrong commands in Chapter 4. Configuring DNS provider credentials

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: Undefined Undefined
    • 1.0.1
    • 1.0.0
    • Documentation
    • None
    • False
    • Hide

      None

      Show
      None
    • False
    • Hide
      Fix example commands for configuring DNS provider credentials.

      Previously, Installing Connectivity Link on OpenShift included incorrect example commands for configuring DNS provider credentials. Now, these examples have been fixed.
      Show
      Fix example commands for configuring DNS provider credentials. Previously, Installing Connectivity Link on OpenShift included incorrect example commands for configuring DNS provider credentials. Now, these examples have been fixed.
    • Bug Fix
    • Done
    • 3
    • Full Snow Moon

      4.1. Configuring Amazon DNS provider credentials

      The command in the step 2 does not include environment variables that are configured in the previous step.

      kubectl create secret generic my-aws-credentials \
        --namespace=my-gateway-namespace \
        --type=kuadrant.io/aws \
        --from-literal=AWS_ACCESS_KEY_ID \
        --from-literal=AWS_REGION \
        --from-literal=AWS_SECRET_ACCESS_KEY
      

      Should this be as follows?

      kubectl create secret generic my-aws-credentials \
        --namespace=my-gateway-namespace \
        --type=kuadrant.io/aws \
        --from-literal=AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID \
        --from-literal=AWS_REGION=$AWS_REGION \
        --from-literal=AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY
      

      Since this is the first time my-gateway-namespace namespace has appeared, it would be better to explain it at the beginning of the chapter.

      4.2. Configuring Google DNS provider credentials

      The command in the step 2 does not include environment variables that are configured in the previous step.

      kubectl create secret generic my-test-gcp-credentials \
        --namespace=my-gateway-namespace \
        --type=kuadrant.io/gcp \
        --from-literal=PROJECT_ID=xxx \
        --from-file=GOOGLE
      

      Should this be as follows?

      kubectl create secret generic my-test-gcp-credentials \
        --namespace=my-gateway-namespace \
        --type=kuadrant.io/gcp \
        --from-literal=PROJECT_ID=$PROJECT_ID \
        --from-file=GOOGLE=$GOOGLE
      

              stmccart1@redhat.com Stephen McCarthy
              rhn-support-tkonishi Takayuki Konishi
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

                Created:
                Updated:
                Resolved: