Compare commits
No commits in common. "4a383437f3a52be067ab222dd46d877977de7095" and "f18a30cd3eb9ff2824d55c5693efe1243ce3eb58" have entirely different histories.
4a383437f3
...
f18a30cd3e
10
Makefile
10
Makefile
@ -17,7 +17,7 @@ format:
|
|||||||
|
|
||||||
.PHONY: run-tests # Runs all tests
|
.PHONY: run-tests # Runs all tests
|
||||||
run-tests:
|
run-tests:
|
||||||
@cd terraform && terraform plan
|
@echo "⚠️ 'run-tests' unimplemented"
|
||||||
|
|
||||||
.PHONY: fetch-deps # Fetch all project dependencies
|
.PHONY: fetch-deps # Fetch all project dependencies
|
||||||
fetch-deps:
|
fetch-deps:
|
||||||
@ -41,9 +41,11 @@ run:
|
|||||||
|
|
||||||
.PHONY: ci # Perform CI specific tasks to perform on a pull request
|
.PHONY: ci # Perform CI specific tasks to perform on a pull request
|
||||||
ci:
|
ci:
|
||||||
@PLAN=$(cd terraform && terraform plan ./terraform) && curl -X "POST" "https://git.cluster.fun/api/v1/repos/AverageMarcus/${REPO}/issues/${PR_ID}/comments?access_token=${ACCESS_TOKEN}" \
|
@cd terraform
|
||||||
|
@PLAN=$(terraform plan)
|
||||||
|
@curl -X "POST" "https://git.cluster.fun/api/v1/repos/AverageMarcus/${REPO}/issues/${PR_ID}/comments?access_token=${ACCESS_TOKEN}" \
|
||||||
-H 'Content-Type: application/json; charset=utf-8' \
|
-H 'Content-Type: application/json; charset=utf-8' \
|
||||||
-d $'{"body": "<details><summary>Terraform Plan:</summary>'"$PLAN"'</details>"}'
|
-d $'{"body": "<details><summary>Terraform Plan:</summary>'$PLAN'</details>"}'
|
||||||
|
|
||||||
.PHONY: release # Release the latest version of the application
|
.PHONY: release # Release the latest version of the application
|
||||||
release:
|
release:
|
||||||
@ -58,4 +60,4 @@ help:
|
|||||||
@echo "-----------------------------------"
|
@echo "-----------------------------------"
|
||||||
@grep '^.PHONY: .* #' Makefile | sed 's/\.PHONY: \(.*\) # \(.*\)/\1 \2/' | expand -t20
|
@grep '^.PHONY: .* #' Makefile | sed 's/\.PHONY: \(.*\) # \(.*\)/\1 \2/' | expand -t20
|
||||||
|
|
||||||
default: test
|
default: test build
|
||||||
|
@ -37,19 +37,23 @@ spec:
|
|||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
memory: 64Mi
|
memory: 64Mi
|
||||||
|
|
||||||
core:
|
core:
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
memory: 64Mi
|
memory: 64Mi
|
||||||
|
|
||||||
jobservice:
|
jobservice:
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
memory: 64Mi
|
memory: 64Mi
|
||||||
|
|
||||||
registry:
|
registry:
|
||||||
registry:
|
registry:
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
memory: 64Mi
|
memory: 64Mi
|
||||||
|
|
||||||
controller:
|
controller:
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
|
@ -14,62 +14,3 @@ spec:
|
|||||||
port: 443
|
port: 443
|
||||||
name: https
|
name: https
|
||||||
type: LoadBalancer
|
type: LoadBalancer
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: DaemonSet
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
k8s-app: traefik-ingress-lb
|
|
||||||
k8s.scw.cloud/ingress: traefik
|
|
||||||
k8s.scw.cloud/object: DaemonSet
|
|
||||||
k8s.scw.cloud/system: ingress
|
|
||||||
name: ingress-traefik
|
|
||||||
namespace: kube-system
|
|
||||||
spec:
|
|
||||||
revisionHistoryLimit: 10
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
k8s-app: traefik-ingress-lb
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
k8s-app: traefik-ingress-lb
|
|
||||||
name: ingress-traefik
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- args:
|
|
||||||
- --api
|
|
||||||
- --kubernetes
|
|
||||||
- --logLevel=INFO
|
|
||||||
- --defaultentrypoints=http,https
|
|
||||||
- --entrypoints=Name:https Address::443 TLS
|
|
||||||
- --entrypoints=Name:http Address::80
|
|
||||||
- --accesslog
|
|
||||||
- --accesslog.format=json
|
|
||||||
image: docker.io/traefik:1.7
|
|
||||||
imagePullPolicy: IfNotPresent
|
|
||||||
name: ingress-traefik
|
|
||||||
ports:
|
|
||||||
- containerPort: 80
|
|
||||||
hostPort: 80
|
|
||||||
name: http
|
|
||||||
protocol: TCP
|
|
||||||
- containerPort: 443
|
|
||||||
hostPort: 443
|
|
||||||
name: https
|
|
||||||
protocol: TCP
|
|
||||||
- containerPort: 8080
|
|
||||||
name: admin
|
|
||||||
protocol: TCP
|
|
||||||
securityContext:
|
|
||||||
capabilities:
|
|
||||||
add:
|
|
||||||
- NET_BIND_SERVICE
|
|
||||||
drop:
|
|
||||||
- ALL
|
|
||||||
dnsPolicy: ClusterFirst
|
|
||||||
restartPolicy: Always
|
|
||||||
serviceAccount: ingress-traefik
|
|
||||||
serviceAccountName: ingress-traefik
|
|
||||||
|
@ -39,12 +39,6 @@ spec:
|
|||||||
params:
|
params:
|
||||||
- name: TARGET
|
- name: TARGET
|
||||||
value: "test"
|
value: "test"
|
||||||
- name: REPO
|
|
||||||
value: $(params.projectname)
|
|
||||||
- name: PR_ID
|
|
||||||
value: $(params.prid)
|
|
||||||
- name: SHA
|
|
||||||
value: $(params.gitrevision)
|
|
||||||
resources:
|
resources:
|
||||||
inputs:
|
inputs:
|
||||||
- name: src
|
- name: src
|
||||||
@ -61,12 +55,6 @@ spec:
|
|||||||
params:
|
params:
|
||||||
- name: TARGET
|
- name: TARGET
|
||||||
value: "build"
|
value: "build"
|
||||||
- name: REPO
|
|
||||||
value: $(params.projectname)
|
|
||||||
- name: PR_ID
|
|
||||||
value: $(params.prid)
|
|
||||||
- name: SHA
|
|
||||||
value: $(params.gitrevision)
|
|
||||||
resources:
|
resources:
|
||||||
inputs:
|
inputs:
|
||||||
- name: src
|
- name: src
|
||||||
@ -87,8 +75,6 @@ spec:
|
|||||||
value: $(params.projectname)
|
value: $(params.projectname)
|
||||||
- name: PR_ID
|
- name: PR_ID
|
||||||
value: $(params.prid)
|
value: $(params.prid)
|
||||||
- name: SHA
|
|
||||||
value: $(params.gitrevision)
|
|
||||||
resources:
|
resources:
|
||||||
inputs:
|
inputs:
|
||||||
- name: src
|
- name: src
|
||||||
|
@ -14,7 +14,7 @@ spec:
|
|||||||
default: "pending"
|
default: "pending"
|
||||||
steps:
|
steps:
|
||||||
- name: pr-status-update
|
- name: pr-status-update
|
||||||
image: docker.cluster.fun/averagemarcus/gitea-pr-status:latest
|
image: docker.cluster.fun/averagemarcus/gitea-pr-state:latest
|
||||||
env:
|
env:
|
||||||
- name: ACCESS_TOKEN
|
- name: ACCESS_TOKEN
|
||||||
valueFrom:
|
valueFrom:
|
||||||
@ -22,6 +22,6 @@ spec:
|
|||||||
name: gitea-access-token
|
name: gitea-access-token
|
||||||
key: access-token
|
key: access-token
|
||||||
args:
|
args:
|
||||||
- "AverageMarcus/$(params.REPO)"
|
- "$(params.REPO)"
|
||||||
- "$(params.SHA)"
|
- "$(params.SHA)"
|
||||||
- "$(params.STATE)"
|
- "$(params.STATE)"
|
||||||
|
Loading…
Reference in New Issue
Block a user