Skip to content

Commit

Permalink
[NBS]: Add instruction for the container registry authorisation for C…
Browse files Browse the repository at this point in the history
…SI driver (#913)
  • Loading branch information
jkuradobery authored Apr 5, 2024
1 parent 044a964 commit 9c339c2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cloud/blockstore/tools/csi_driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@ kubectl apply -f ./deploy/manifests/1-priorityclass.yaml
kubectl apply -f ./deploy/manifests/2-rbac.yaml
kubectl apply -f ./deploy/manifests/3-csidriver.yaml
kubectl apply -f ./deploy/manifests/4-storageclass.yaml
# TODO: kubectl secret nbs-puller-secret
# Download docker-config.json from the lockbox under the name docker-config.json
export DOCKER_CONFIG=$(cat docker-config.json)
kubectl create secret generic nbs-puller-secret \
--namespace nbs-csi-ns \
--type=kubernetes.io/dockerconfigjson \
--from-literal=.dockerconfigjson="$DOCKER_CONFIG"
kubectl apply -f ./deploy/manifests/5-nbs-configmap.yaml
kubectl apply -f ./deploy/manifests/6-nbs-daemonset.yaml
kubectl apply -f ./deploy/manifests/7-csi-deployment.yaml
Expand Down

0 comments on commit 9c339c2

Please sign in to comment.