3 lines
209 B
Bash
3 lines
209 B
Bash
|
|
#!/bin/bash
|
||
|
|
POD_NAME=$(kubectl get pods -n nextcloud -l app=nextcloud -o jsonpath="{.items[0].metadata.name}")
|
||
|
|
kubectl -n nextcloud exec -it $POD_NAME -- /bin/su -s /bin/bash www-data -c "/var/www/html/occ $*"
|