Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Make the names lowercase as they are required by k8s #627

Open
wants to merge 2 commits into
base: master
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
2 changes: 1 addition & 1 deletion chart/monocular/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: monocular
description: Monocular is a search and discovery front end for Helm Charts Repositories.
version: 1.4.5
version: 1.4.6
appVersion: v1.6.0
home: https://github.com/helm/monocular
sources:
Expand Down
2 changes: 1 addition & 1 deletion chart/monocular/templates/repo-sync-cronjobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: {{ template "fullname" $ }}-sync-scheduled-{{ .name }}
name: {{ template "fullname" $ }}-sync-scheduled-{{ .name | lower }}
labels:
monocular.helm.sh/repo-name: {{ .name }}
app: {{ template "fullname" $ }}
Expand Down
2 changes: 1 addition & 1 deletion chart/monocular/templates/repo-sync-jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: batch/v1
kind: Job
metadata:
name: {{ template "fullname" $ }}-sync-initial-{{ .name }}-{{ randAlphaNum 5 | lower }}
name: {{ template "fullname" $ }}-sync-initial-{{ .name | lower }}-{{ randAlphaNum 5 | lower }}
labels:
monocular.helm.sh/repo-name: {{ .name }}
app: {{ template "fullname" $ }}
Expand Down