Loading .gitea/workflows/deployment.yaml +9 −12 Original line number Diff line number Diff line --- # generic name: 'Kubernetes Deployment' name: "Kubernetes Deployment" on: push: branches: - 'main' - "main" # jobs jobs: # kubernetes deployment Deployment: runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest" steps: # name: Build - name: 'Kubernetes deployment' uses: 'appleboy/ssh-action@v1.0.3' - name: "Kubernetes deployment" uses: "appleboy/ssh-action@v1.0.3" with: # bastion proxy_host: 'wireguard.do.siempie.com' proxy_port: '22' proxy_host: "wireguard.do.siempie.com" proxy_port: "22" proxy_username: ${{ secrets.USERNAME }} proxy_key: ${{ secrets.SSHKEY }} # kubernetes management host: 'mgmt01.infra.vpn.mirahsimon.us' port: '22' host: "mgmt01.infra.vpn.mirahsimon.us" port: "22" username: ${{ secrets.USERNAME }} key: ${{ secrets.SSHKEY }} Loading .gitignore 0 → 100644 +1 −0 Original line number Diff line number Diff line .ansible Loading
.gitea/workflows/deployment.yaml +9 −12 Original line number Diff line number Diff line --- # generic name: 'Kubernetes Deployment' name: "Kubernetes Deployment" on: push: branches: - 'main' - "main" # jobs jobs: # kubernetes deployment Deployment: runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest" steps: # name: Build - name: 'Kubernetes deployment' uses: 'appleboy/ssh-action@v1.0.3' - name: "Kubernetes deployment" uses: "appleboy/ssh-action@v1.0.3" with: # bastion proxy_host: 'wireguard.do.siempie.com' proxy_port: '22' proxy_host: "wireguard.do.siempie.com" proxy_port: "22" proxy_username: ${{ secrets.USERNAME }} proxy_key: ${{ secrets.SSHKEY }} # kubernetes management host: 'mgmt01.infra.vpn.mirahsimon.us' port: '22' host: "mgmt01.infra.vpn.mirahsimon.us" port: "22" username: ${{ secrets.USERNAME }} key: ${{ secrets.SSHKEY }} Loading