Skip to content

Commit

Permalink
Change tailscale domain to circumvent letsencrypt limits
Browse files Browse the repository at this point in the history
  • Loading branch information
jalaka authored Jun 18, 2024
1 parent 0758acd commit 18f310d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-az.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Apply tailscale operator
working-directory: ./iac
run: |
az aks command invoke -n ${{ secrets.AZURERM_AKS_CLUSTER_NAME }} -g rg-service-not2day --command "helm repo add tailscale https://pkgs.tailscale.com/helmcharts && helm repo update && helm upgrade --install tailscale-operator tailscale/tailscale-operator --set-string oauth.clientId=${{secrets.TAILSCALE_CLIENT_ID}} --set-string oauth.clientSecret=${{secrets.TAILSCALE_CLIENT_SECRET}} --set-string apiServerProxyConfig.mode=true --wait || true"
az aks command invoke -n ${{ secrets.AZURERM_AKS_CLUSTER_NAME }} -g rg-service-not2day --command "helm repo add tailscale https://pkgs.tailscale.com/helmcharts && helm repo update && helm upgrade --install tailscale-operator-1 tailscale/tailscale-operator --set-string oauth.clientId=${{secrets.TAILSCALE_CLIENT_ID}} --set-string oauth.clientSecret=${{secrets.TAILSCALE_CLIENT_SECRET}} --set-string apiServerProxyConfig.mode=true --wait || true"
- name: Connect to tailscale
uses: tailscale/github-action@v2
with:
Expand All @@ -56,7 +56,7 @@ jobs:
tags: tag:ci

- name: Configure kubernetes config
run: tailscale configure kubeconfig tailscale-operator
run: tailscale configure kubeconfig tailscale-operator-1

- name: Check working cluster
run: kubectl get pods -A
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install-components-az.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
tags: tag:ci

- name: Configure kubernetes config
run: tailscale configure kubeconfig tailscale-operator
run: tailscale configure kubeconfig tailscale-operator-1

- name: Install Grafana
if: ${{ github.event.inputs.component == 'all' || contains(github.event.inputs.component, 'grafana') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/uninstall-components-az.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
tags: tag:ci

- name: Configure kubernetes config
run: tailscale configure kubeconfig tailscale-operator
run: tailscale configure kubeconfig tailscale-operator-1

- name: Uninstall MySQL
working-directory: ./helm/mysql
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade-components-az.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
tags: tag:ci

- name: Configure kubernetes config
run: tailscale configure kubeconfig tailscale-operator
run: tailscale configure kubeconfig tailscale-operator-1

- name: Undeploy game operator
working-directory: ./operator
Expand Down

0 comments on commit 18f310d

Please sign in to comment.