10 lines
250 B
Bash
Executable File
10 lines
250 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 get pods
|
|
|
|
kubectl rollout status deployment/${APPLICATION_NAME} --namespace=production |