You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
export IMG_VERSION = 7.5
|
|
|
# limpia todo
|
|
|
all: imagen clean install
|
|
|
|
|
|
imagen:
|
|
|
cd ../servicios; make
|
|
|
|
|
|
install:
|
|
|
envsubst < repostajes-deployment.yaml |kubectl create -f -
|
|
|
kubectl create -f pv-local-repostajes.yaml
|
|
|
kubectl create -f repostajes-prod-persistentvolumeclaim.yaml
|
|
|
|
|
|
clean:
|
|
|
envsubst < repostajes-deployment.yaml |kubectl delete -f -
|
|
|
kubectl delete -f repostajes-prod-persistentvolumeclaim.yaml
|
|
|
kubectl delete -f pv-local-repostajes.yaml
|
|
|
|