Skip to content

Commit

Permalink
rename attach to apply
Browse files Browse the repository at this point in the history
  • Loading branch information
LimpidCrypto committed Mar 7, 2024
1 parent 7db86d9 commit 9756fa1
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
28 changes: 28 additions & 0 deletions bin/apply_all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/bin/bash

# apply namespaces
kubectl apply -f ../k8s/namespace.yaml

# apply secrets
kubectl apply -f ../k8s/db/secret.yaml
kubectl apply -f ../k8s/mailer/secret.yaml

# apply configmaps

# apply pv
kubectl apply -f ../k8s/db/pv.yaml

# apply pvc
kubectl apply -f ../k8s/db/pvc.yaml

# apply deployments
kubectl apply -f ../k8s/app/deployment.yaml
kubectl apply -f ../k8s/db/deployment.yaml
kubectl apply -f ../k8s/mailer/deployment.yaml
kubectl apply -f ../k8s/redis/deployment.yaml

# apply services
kubectl apply -f ../k8s/app/service.yaml
kubectl apply -f ../k8s/db/service.yaml
kubectl apply -f ../k8s/mailer/service.yaml
kubectl apply -f ../k8s/redis/service.yaml
28 changes: 0 additions & 28 deletions bin/attach_all.sh

This file was deleted.

0 comments on commit 9756fa1

Please sign in to comment.