Versions Compared

Key

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

...

  1. Rename the obtained metadata (XML) file from the customer to “kfuse.xml” exactly.

OR

  1. If the customer provided you with a url to the metadata file, then do a curl on the url and save its output to the “kfuse.xml” file name exactly. Save this directly in the customer’s terminal.

    Code Block
    curl {metadata xml file url} > kfuse.xml
  2. In the customer’s cluster and appropriate namespace, run this command

    Code Block
    kubectl create secret generic kfuse-xml --from-file=kfuse.xml

...

  1. Exec into kfuse-configdb shell . using command -

    Code Block
    k exec -it kfuse-configdb-0 -- bash
  2. psql into the postgres using command -

    Code Block
    psql -U postgres
  3. It will ask for password for kfuse-configdbpostgres. Provide that.

  4. Check all tables and if samldb exist database exists using the command-

    Code Block
    \l
  5. Delete and create the table samldb

    Code Block
    dropDROP databaseDATABASE samldb;
    CREATE createdbDATABASE samldb;