Compare commits

...

8 Commits

Author SHA1 Message Date
e2c61e0ed9 fix 2025-09-17 16:16:26 +02:00
69a1d2ca90 whitespace 2025-09-17 16:11:30 +02:00
6d06a38da6 Use external url in workflow 2025-06-25 15:15:55 +02:00
045db614a5 running on alpine
All checks were successful
Build & Push Linode Webhook / build (push) Successful in 1m17s
2025-06-23 13:14:16 +02:00
3cb240c8f3 running on alpine
Some checks failed
Build & Push Linode Webhook / build (push) Failing after 1s
2025-06-23 13:13:14 +02:00
e5c1a4f692 running on alpine
Some checks failed
Build & Push Linode Webhook / build (push) Failing after 2s
2025-06-23 13:12:07 +02:00
e667f898d8 running on alpine
Some checks failed
Build & Push Linode Webhook / build (push) Failing after 4s
2025-06-23 13:11:32 +02:00
439abb87d1 running on alpine
Some checks failed
Build & Push Linode Webhook / build (push) Failing after 0s
2025-06-23 13:10:56 +02:00
2 changed files with 5 additions and 8 deletions

View File

@@ -10,23 +10,19 @@ jobs:
steps: steps:
- name: Clone repo with token auth - name: Clone repo with token auth
run: | run: |
git clone http://${GITEA_TOKEN}@gitea-http.gitea.svc.cluster.local:3000/klauvsteinen/cert-manager-webhook-linode.git git clone ${{ vars.GIT_URL}}/klauvsteinen/cert-manager-webhook-linode.git
- name: Install Docker - name: Install Docker
run: | run: |
apt update apk add docker
apt install -y docker.io
systemctl start docker
docker version docker version
- name: Show Docker version - name: Show Docker version
run: docker version run: docker version
- name: Cd
run: cd cert-manager-webhook-linode
- name: Build Docker image - name: Build Docker image
run: docker build -t registry.engen.priv.no/cert-manager-linode-webhook:latest . run: cd cert-manager-webhook-linode && docker build -t ${{vars.INTERNAL_REPOSITORY}}/cert-manager-linode-webhook:latest .
- name: Push Docker image - name: Push Docker image
run: docker push registry.engen.priv.no/cert-manager-linode-webhook:latest run: cd cert-manager-webhook-linode && docker push ${{vars.INTERNAL_REPOSITORY}}/cert-manager-linode-webhook:latest

View File

@@ -18,6 +18,7 @@ helm install cert-manager-webhook-linode \
## Usage ## Usage
### Create Linode API Token Secret ### Create Linode API Token Secret
```bash ```bash