Uploaded image for project: 'Observability Documentation'
  1. Observability Documentation
  2. OBSDOCS-3169

Azure WIF - Short lived command structure is wrong

XMLWordPrintable

    • False
    • Hide

      None

      Show
      None
    • False
    • Moderate

      • Current documentation code block looks:
        $ oc create secret generic storage-secret \
        --from-literal=container="<BLOB_STORAGE_CONTAINER_NAME>" \
        --from-literal=account_name="<BLOB_STORAGE_ACCOUNT_NAME>" \
        --from-literal=audience="<AUDIENCE>" \
        --from-literal=client_id="CLIENT_ID>" \
        --from-literal=tenant_id="<TENANT_ID>" 
      • In the above commands, the "- " signs are incorrectly placed below the "$" symbol.
      • However, they should be aligned parallel to the "oc" command, where the command begins.
      • Here is the updated look of code block:
        $ oc create secret generic storage-secret \
          --from-literal=container="<BLOB_STORAGE_CONTAINER_NAME>" \
          --from-literal=account_name="<BLOB_STORAGE_ACCOUNT_NAME>" \
          --from-literal=audience="<AUDIENCE>" \
          --from-literal=client_id="CLIENT_ID>" \
          --from-literal=tenant_id="<TENANT_ID>"   
      • The commands will work as it is, but the structure is incorrect.
      • It should be a standard format all over the documentation. Hence, it needs to be changed.

              Unassigned Unassigned
              rhn-support-pripatil Prithviraj Patil
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

                Created:
                Updated: