mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
36 lines
855 B
YAML
36 lines
855 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: github-runner
|
|
labels:
|
|
app: github-runner
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: github-runner
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: github-runner
|
|
spec:
|
|
containers:
|
|
- name: github-runner
|
|
imagePullPolicy: Never #use local kind image
|
|
image: github-runner:latest
|
|
env:
|
|
- name: GITHUB_OWNER
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: github-secret
|
|
key: GITHUB_OWNER
|
|
- name: GITHUB_REPOSITORY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: github-secret
|
|
key: GITHUB_REPOSITORY
|
|
- name: GITHUB_PERSONAL_TOKEN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: github-secret
|
|
key: GITHUB_PERSONAL_TOKEN |