Skip to content

Commit

Permalink
test deploy via tailscale to k8s dev cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
majodev committed Oct 6, 2023
1 parent 1ce877c commit 8d5f2b6
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 45 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/build-publish-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# https://docs.github.com/en/actions/publishing-packages/publishing-docker-images
name: Create and publish gwfh

on:
push:
tags: "**"
branches:
- "master"
- "dev"

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
push: true
tags: |
${{ steps.meta.outputs.tags }}
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
labels: ${{ steps.meta.outputs.labels }}

- name: Connect to tailscale network
uses: tailscale/github-action@v2
with:
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
tags: tag:ci

- name: Set image on dev cluster
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/dev' }}
uses: actions-hub/kubectl@1.26.6
env:
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG_DEV }}
NAMESPACE: gwfh-dev
with:
args: -n ${{ env.NAMESPACE }} set image deployment/app app=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}

- name: Set image on prod cluster
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: actions-hub/kubectl@1.26.6
env:
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG_PROD }}
NAMESPACE: gwfh-prod
with:
args: -n ${{ env.NAMESPACE }} set image deployment/app app=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
45 changes: 0 additions & 45 deletions .github/workflows/build-publish.yml

This file was deleted.

0 comments on commit 8d5f2b6

Please sign in to comment.