Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
397c244609 | ||
|
|
eaa4bfc759 | ||
|
|
709e03f9c1 | ||
|
|
f35f07e35a | ||
|
|
207e34e700 | ||
|
|
6adbbb36b2 | ||
|
|
329afdbe81 | ||
|
|
13501567c0 | ||
|
|
ed626a2dad | ||
|
|
761814ec62 | ||
|
|
2b4b2af16c | ||
|
|
e825e2bf3c | ||
|
|
5cb476704e | ||
|
|
6d81c22842 | ||
|
|
b0cb481ead | ||
|
|
b7aa0a83aa |
46
.github/workflows/main.yml
vendored
46
.github/workflows/main.yml
vendored
@ -10,7 +10,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: self-hosted
|
||||||
|
|
||||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||||
steps:
|
steps:
|
||||||
@ -21,29 +21,37 @@ jobs:
|
|||||||
id: get_version
|
id: get_version
|
||||||
uses: battila7/get-version-action@v2.0.0
|
uses: battila7/get-version-action@v2.0.0
|
||||||
|
|
||||||
- name: Build container image
|
- name: Docker Login
|
||||||
env:
|
# You may pin to the exact commit or the version.
|
||||||
IMAGE_TAG: ${{ steps.get_version.outputs.version-without-v }}
|
# uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
|
||||||
run: docker build -t registry.digitalocean.com/djpianalto/snowflake-server:$IMAGE_TAG .
|
uses: docker/login-action@v1.10.0
|
||||||
|
|
||||||
- name: Install doctl
|
|
||||||
uses: digitalocean/action-doctl@v2
|
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
|
registry: ${{ secrets.DR_URL }}
|
||||||
|
# Username used to log against the Docker registry
|
||||||
|
username: ${{ secrets.DH_USERNAME }}
|
||||||
|
# Password or personal access token used to log against the Docker registry
|
||||||
|
password: ${{ secrets.DH_PASSWORD }}
|
||||||
|
# Log out from the Docker registry at the end of a job
|
||||||
|
logout: true
|
||||||
|
|
||||||
- name: Login to DigitalOcean Container Registry with short-lived credentials
|
- name: Docker Build & Push
|
||||||
run: doctl registry login --expiry-seconds 600
|
|
||||||
|
|
||||||
- name: Push image to DigitalOcean Container Registry
|
|
||||||
env:
|
env:
|
||||||
IMAGE_TAG: ${{ steps.get_version.outputs.version-without-v }}
|
IMAGE_TAG: ${{ steps.get_version.outputs.version-without-v }}
|
||||||
run: docker push registry.digitalocean.com/djpianalto/snowflake-server:$IMAGE_TAG
|
run: |
|
||||||
|
docker build -t ${{ secrets.DR_URL }}/snowflake-server:$IMAGE_TAG .
|
||||||
|
docker push ${{ secrets.DR_URL }}/snowflake-server:$IMAGE_TAG
|
||||||
|
sed -i 's|<IMAGE>|${{ secrets.DR_URL }}/snowflake-server:'${IMAGE_TAG}'|' $GITHUB_WORKSPACE/deployment.yml
|
||||||
|
|
||||||
- name: Update deployment file
|
- name: Kubectl tool installer
|
||||||
run: TAG=${{ steps.get_version.outputs.version-without-v }} && sed -i 's|<IMAGE>|registry.digitalocean.com/djpianalto/snowflake-server:'${TAG}'|' $GITHUB_WORKSPACE/deployment.yml
|
uses: Azure/setup-kubectl@v1
|
||||||
|
|
||||||
- name: Save DigitalOcean kubeconfig with short-lived credentials
|
- name: Kubernetes set context
|
||||||
run: doctl kubernetes cluster kubeconfig save --expiry-seconds 600 discord-bots
|
uses: Azure/k8s-set-context@v1.1
|
||||||
|
with:
|
||||||
|
# Acceptable values: kubeconfig or service-account or service-principal
|
||||||
|
method: kubeconfig
|
||||||
|
# Kubernetes Config
|
||||||
|
kubeconfig: ${{ secrets.KUBE_CONFIG }}
|
||||||
|
|
||||||
- name: Deploy to DigitalOcean Kubernetes
|
- name: Deploy to Kubernetes
|
||||||
run: kubectl apply -f $GITHUB_WORKSPACE/deployment.yml
|
run: kubectl apply -f $GITHUB_WORKSPACE/deployment.yml
|
||||||
|
|||||||
@ -5,6 +5,7 @@ COPY ./go.mod .
|
|||||||
COPY ./go.sum .
|
COPY ./go.sum .
|
||||||
|
|
||||||
RUN go mod download
|
RUN go mod download
|
||||||
|
RUN sed -i 's/https/http/' /etc/apk/repositories
|
||||||
RUN apk update
|
RUN apk update
|
||||||
|
|
||||||
RUN apk add protobuf
|
RUN apk add protobuf
|
||||||
|
|||||||
@ -1,6 +1,9 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
"strconv"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/dustinpianalto/snowflake/internal/generator"
|
"github.com/dustinpianalto/snowflake/internal/generator"
|
||||||
@ -10,7 +13,12 @@ import (
|
|||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
||||||
generator.CreateGenerator(1)
|
workerID, err := strconv.ParseUint(os.Getenv("WORKER_ID"), 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal("Not a valid worker id")
|
||||||
|
}
|
||||||
|
|
||||||
|
generator.CreateGenerator(workerID)
|
||||||
|
|
||||||
go generator.Generator.Run()
|
go generator.Generator.Run()
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@ kind: Service
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
metadata:
|
metadata:
|
||||||
name: snowflake-server
|
name: snowflake-server
|
||||||
namespace: dca
|
namespace: default
|
||||||
labels:
|
labels:
|
||||||
environment: production
|
environment: production
|
||||||
spec:
|
spec:
|
||||||
@ -21,21 +21,28 @@ status:
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
apiVersion: v1
|
apiVersion: apps/v1
|
||||||
apiVersion: batch/v1beta1
|
kind: Deployment
|
||||||
kind: CronJob
|
|
||||||
metadata:
|
metadata:
|
||||||
name: snowflake-server
|
name: snowflake-server
|
||||||
namespace: default
|
namespace: default
|
||||||
labels:
|
labels:
|
||||||
app: snowflake-server
|
app: snowflake-server
|
||||||
spec:
|
spec:
|
||||||
schedule: "0 0 * * *"
|
replicas: 1
|
||||||
jobTemplate:
|
selector:
|
||||||
spec:
|
matchLabels:
|
||||||
|
app: snowflake-server
|
||||||
|
strategy:
|
||||||
|
rollingUpdate:
|
||||||
|
maxSurge: 1
|
||||||
|
maxUnavailable: 1
|
||||||
|
minReadySeconds: 30
|
||||||
template:
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: snowflake-server
|
||||||
spec:
|
spec:
|
||||||
restartPolicy: "OnFailure"
|
|
||||||
containers:
|
containers:
|
||||||
- name: snowflake-server
|
- name: snowflake-server
|
||||||
image: <IMAGE>
|
image: <IMAGE>
|
||||||
@ -48,3 +55,5 @@ spec:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: snowflake
|
name: snowflake
|
||||||
key: worker_id
|
key: worker_id
|
||||||
|
imagePullSecrets:
|
||||||
|
- name: regcred
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user