Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Add diff pipeline #59

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ci: Add diff pipeline
  • Loading branch information
jkroepke committed Jul 21, 2024
commit d3739b6ecffdde39a52a94a3fc18468631ee93d7
2 changes: 1 addition & 1 deletion charts/github-actions-runner/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
name: github-runner-agent
name: github-actions-runner
description: A Helm chart to deploy github runner for Kubernetes.
type: application
version: 1.1.2
Expand Down
2 changes: 1 addition & 1 deletion charts/github-actions-runner/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "github-actions-runner.fullname" . }}-entrypoint
name: {{ include "github-actions-runner.fullname" . | trunc 52 | trimSuffix "-" }}-entrypoint
labels:
{{- include "github-actions-runner.labels" . | nindent 4 }}
data:
Expand Down
2 changes: 1 addition & 1 deletion charts/github-actions-runner/templates/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
apiVersion: batch/v1
kind: CronJob
metadata:
name: {{ include "github-actions-runner.fullname" . }}-restart
name: {{ include "github-actions-runner.fullname" . | trunc 55 | trimSuffix "-" }}-restart
labels:
{{- include "github-actions-runner.labels" . | nindent 4 }}
spec:
Expand Down
Loading