3 lines
209 B
Bash
Executable File
3 lines
209 B
Bash
Executable File
#!/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 $*" |