Migration with Stork on OKE
Pairing with an OKE cluster requires the following additional steps because you also need to pass in your Oracle credentials which will be used to generate the authentication token.
Create a Secret with your Oracle credentials
Follow how to generate an API signing key from the Oracle documentation to create your API signing key. Note down the PATH where you store the API signing key.
On the source cluster, create a secret in the kube-system namespace with your Oracle credentials file:
kubectl create secret generic --from-file=$HOME/.oci/config --from-file $HOME/.oci/oci.pem -n kube-system oci-creds
secret/oci-creds created
In this example, the API signing key is stored under the path $HOME/.oci/oci.pem, and the OCI config file is stored under $HOME/.oci/config.