Build Process
Getting Ready For First Deployment
Set the Default GKE Cluster
# Get the name using:
kubectl config get-contexts
# Set the config:
kubectl config use-context <name>
Run the Helm Script
bash helm/scripts.sh
Apply Kubernetes Configurations
Use kubectl
to apply all the Kubernetes YAML files in the following order:
# Deploy ConfigMaps:
kubectl apply -f 'configmaps/*'
# Secrets:
kubectl apply -f 'secrets/*'
# Deployments:
kubectl apply -f 'deployments/*'
# Services:
kubectl apply -f 'services/*'
# ClusterIssuer:
kubectl apply -f ClusterIssuer/cluster-issuer.yaml
# Certificate:
kubectl apply -f certificate/certificate.yml
# Ingress:
kubectl apply -f ingress/care.yaml
Once ingress is created, kubectl get ingress care-ingress
will show the IP of the TCP load balancer.
Once the DNS records are added, the SSL will be automatically handled.