Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
afd5d40e25 | ||
|
|
9812c036d1 | ||
|
|
3f1ce86ff8 | ||
|
|
ccb170201b | ||
|
|
c6f2e13f4d |
@@ -1,9 +1,21 @@
|
|||||||
when:
|
when:
|
||||||
- event: push
|
event:
|
||||||
branch: main
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: test
|
- name: validate-manifests
|
||||||
image: debian
|
image: alpine:latest
|
||||||
commands:
|
commands:
|
||||||
- echo "This is the test step"
|
- apk add --no-cache curl bash ca-certificates
|
||||||
|
- update-ca-certificates
|
||||||
|
- |
|
||||||
|
echo "Installing kubectl..."
|
||||||
|
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
|
||||||
|
install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
|
||||||
|
- |
|
||||||
|
echo "Validating Kubernetes manifests with kubectl dry-run..."
|
||||||
|
for file in $(find . -maxdepth 1 -type f \( -name '*.yaml' -o -name '*.yml' \)); do
|
||||||
|
echo "Checking $file"
|
||||||
|
kubectl apply --dry-run=client -f "$file"
|
||||||
|
done
|
||||||
|
|||||||
@@ -38,6 +38,8 @@ spec:
|
|||||||
database:
|
database:
|
||||||
DB_TYPE: sqlite3
|
DB_TYPE: sqlite3
|
||||||
NAME: /data/gitea/gitea.db
|
NAME: /data/gitea/gitea.db
|
||||||
|
webhook:
|
||||||
|
ALLOWED_HOST_LIST: ci.keligrubb.com
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
className: nginx
|
className: nginx
|
||||||
|
|||||||
Reference in New Issue
Block a user