- Command Line Tools:
kubectl
,kubectl-oidc_login
,pack
,docker
,helm
@sap/cds-dk
>= 7.0.1
-
Open the reCAP: Kyma subaccount and go to the Kyma Environment section.
-
Click on
KubeconfigURL
to download the kubeconfig File. -
Export the kubeconfig using the command:
Windows:
set KUBECONFIG=<path-to-your-downloaded-file>
.macOS:
export KUBECONFIG=<path-to-your-downloaded-file>
.
Change namespace to your own using: kubectl config set-context --current --namespace=participant-<id>
Create a secret docker-secret
with credentials to access the container registry:
kubectl create secret docker-registry docker-secret --docker-username=$USERNAME --docker-password=$API_KEY --docker-server=$YOUR_CONTAINER_REGISTRY
This will create a K8s secret, docker-secret
, in your namespace.
Next: Containerization