Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.

Commit 1adfb39

Browse files
committed
add som docs
1 parent a1fbcab commit 1adfb39

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# github-runner-base
22
Base Image for github runner images in repo @fullstack-devops/github-runner. Can also be used as standalone image.
33

4+
Available Containers:
5+
| Name | Description |
6+
|------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|
7+
| `ghcr.io/fullstack-devops/github-actions-runner:base-latest` | Base runner with nothing fancy installed |
8+
| `ghcr.io/fullstack-devops/github-actions-runner:kaniko-sidecar-latest` | Sidecar used by Runner to build containers without root privileges |
9+
| `ghcr.io/fullstack-devops/github-actions-runner:ansible-k8s-latest` | Rrunner with ansible, kubectl and helm installed <br> For more Details see [Dockerfile](images/ansible-k8s/Dockerfile) |
10+
411
---
512

613
## Environmental variables
@@ -82,7 +89,33 @@ services:
8289
8390
### kubernetes pod
8491
85-
tbd
92+
```yaml
93+
apiVersion: v1
94+
kind: Pod
95+
metadata:
96+
name: gha-runner-kaniko
97+
spec:
98+
volumes:
99+
- name: workspace-volume
100+
emptyDir: {}
101+
containers:
102+
- name: github-actions-runner
103+
image: ghcr.io/fullstack-devops/github-actions-runner:base-latest
104+
resources: {}
105+
volumeMounts:
106+
- name: workspace-volume
107+
mountPath: /kaniko/workspace/
108+
imagePullPolicy: Never
109+
tty: true
110+
- name: kaniko-sidecar
111+
image: ghcr.io/fullstack-devops/github-actions-runner:kaniko-sidecar-latest
112+
resources: {}
113+
volumeMounts:
114+
- name: workspace-volume
115+
mountPath: /kaniko/workspace/
116+
imagePullPolicy: Never
117+
restartPolicy: Never
118+
```
86119
87120
### helm
88121

0 commit comments

Comments
 (0)