Skip to content

Commit

Permalink
Prepare deployments to TransIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Daanvm committed Dec 12, 2023
1 parent 19dde91 commit c725419
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 36 deletions.
69 changes: 39 additions & 30 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,49 +1,58 @@
on:
push:
branches:
- main
- transip

jobs:
install-ingress-and-cert-manager:
name: Install the ingress and cert-manager resources
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v3

- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}

- name: Save DigitalOcean kubeconfig with short-lived credentials
run: doctl kubernetes cluster kubeconfig save --expiry-seconds 600 k8s-daanvm

- name: Install helm
uses: azure/setup-helm@v3
- name: Checkout this repo
uses: actions/checkout@v4

- name: Set up helm
run: |
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo add jetstack https://charts.jetstack.io
helm repo add metrics-server https://kubernetes-sigs.github.io/metrics-server/
helm repo update
uses: wahyd4/kubectl-helm-action@master
env:
KUBE_CONFIG_DATA: ${{ secrets.TRANSIP_KUBECONFIG_BASE64 }}
with:
args: |
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo add jetstack https://charts.jetstack.io
helm repo add metrics-server https://kubernetes-sigs.github.io/metrics-server/
helm repo update
- name: Install metrics-server with helm
run: helm upgrade --install metrics-server metrics-server/metrics-server
uses: wahyd4/kubectl-helm-action@master
env:
KUBE_CONFIG_DATA: ${{ secrets.TRANSIP_KUBECONFIG_BASE64 }}
with:
args: |
helm upgrade --install metrics-server metrics-server/metrics-server
- name: Install Nginx ingress with helm
run: helm upgrade --install nginx-ingress ingress-nginx/ingress-nginx --set controller.publishService.enabled=true
uses: wahyd4/kubectl-helm-action@master
env:
KUBE_CONFIG_DATA: ${{ secrets.TRANSIP_KUBECONFIG_BASE64 }}
with:
args: |
helm upgrade --install nginx-ingress ingress-nginx/ingress-nginx --set controller.publishService.enabled=true
- name: Install cert manager with helm
run: |
kubectl create namespace cert-manager --dry-run=client -o yaml | kubectl apply -f -
helm upgrade --install cert-manager jetstack/cert-manager --namespace cert-manager --version v1.7.1 --set installCRDs=true
kubectl apply -f cert-manager-letsencrypt.yaml
uses: wahyd4/kubectl-helm-action@master
env:
KUBE_CONFIG_DATA: ${{ secrets.TRANSIP_KUBECONFIG_BASE64 }}
with:
args: |
kubectl create namespace cert-manager --dry-run=client -o yaml | kubectl apply -f -
helm upgrade --install cert-manager jetstack/cert-manager --namespace cert-manager --version v1.7.1 --set installCRDs=true
kubectl apply -f cert-manager-letsencrypt.yaml
- name: Create kubernetes ingress
run: |
kubectl apply -f ingress.yaml
- name: Get public loadbalancer IP address
run: kubectl get service nginx-ingress-ingress-nginx-controller -o=jsonpath='{.status.loadBalancer.ingress[*].ip}'
uses: wahyd4/kubectl-helm-action@master
env:
KUBE_CONFIG_DATA: ${{ secrets.TRANSIP_KUBECONFIG_BASE64 }}
with:
args: |
kubectl apply -f ingress.yaml
kubectl get service nginx-ingress-ingress-nginx-controller -o=jsonpath='{.status.loadBalancer.ingress[*].hostname}'
13 changes: 7 additions & 6 deletions ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@ kind: Ingress
metadata:
name: daanvm-nl-ingress
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: nginx
tls:
- hosts:
- daanvm.nl
- www.daanvm.nl

- christelmusic.nl
- www.christelmusic.nl
# - christelmusic.nl
# - www.christelmusic.nl
- test.christelmusic.nl

secretName: daanvm-nl-tls

Expand All @@ -31,7 +32,7 @@ spec:
- host: "www.daanvm.nl"
http: *daanvm_nl_http_rules

- host: "christelmusic.nl"
- host: "test.christelmusic.nl"
http: &christelmusic_nl_http_rules
paths:
- pathType: Prefix
Expand All @@ -41,5 +42,5 @@ spec:
name: christelmusic-nl
port:
number: 80
- host: "www.christelmusic.nl"
http: *christelmusic_nl_http_rules
# - host: "www.christelmusic.nl"
# http: *christelmusic_nl_http_rules

0 comments on commit c725419

Please sign in to comment.