8 lines
232 B
Bash
Executable File
8 lines
232 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
APPLICATION_NAME=$1
|
|
|
|
kubectl apply -f configuration/kubernetes/deployment.yaml
|
|
kubectl apply -f configuration/kubernetes/service.yaml
|
|
|
|
kubectl rollout status deployment/${APPLICATION_NAME} --namespace=production |