chore(repo): cleanup unused repos
All checks were successful
Release Charts / Get Charts being Changed (push) Successful in 1m2s
Release Charts / Publish Helm Chart (push) Successful in 54s

This commit is contained in:
Tommy 2024-11-14 17:30:53 +01:00
parent 7a7cea0df5
commit 4d02d60eaf
Signed by: tommy
SSH key fingerprint: SHA256:1LWgQT3QPHIT29plS8jjXc3S1FcE/4oGvsx3Efxs6Uc
9 changed files with 0 additions and 210 deletions

View file

@ -1,7 +0,0 @@
The changelog is automatically generated using [git-chglog](https://github.com/git-chglog/git-chglog) and it follows [Keep a Changelog](https://keepachangelog.com) format.
<a name="vikunja-0.1.0"></a>
## vikunja-0.1.0 - 2024-04-11
### Features
- add the vikunja todo app

View file

@ -1,19 +0,0 @@
apiVersion: v2
name: vikunja
description: |
Todo app with web and dav support
# renovate: image=vikunja/vikunja
appVersion: 0.24.4
type: application
version: 0.1.1
maintainers:
- name: Tommy Skaug
email: tommy@skaug.me
keywords:
- vikunja
- todo
- task
- project-management
sources:
- https://vikunja.io/
- https://hub.docker.com/r/vikunja/vikunja

View file

@ -1,30 +0,0 @@
# Define a template for the chart's full name.
{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
*/}}
{{- define "vikunja.fullname" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
{{- end }}
# Define a template for standard labels.
{{/*
Common labels
*/}}
{{- define "vikunja.labels" -}}
helm.sh/chart: {{ include "vikunja.chart" . }}
app.kubernetes.io/name: {{ include "vikunja.fullname" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.Version | quote }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end }}
# Define a template for the chart name and version.
{{/*
Generate basic labels
*/}}
{{- define "vikunja.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" -}}
{{- end }}
# Optionally, add more helper templates as needed.

View file

@ -1,20 +0,0 @@
apiVersion: batch/v1
kind: Job
metadata:
name: {{ include "vikunja.fullname" . }}-db-init
labels:
{{- include "vikunja.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": pre-install
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
spec:
template:
spec:
restartPolicy: Never
containers:
- name: general-db-init
image: "{{ .Values.initContainers.dbInit.image.repository }}:{{ .Values.initContainers.dbInit.image.tag }}"
envFrom:
- secretRef:
name: {{ .Values.postgres.secretName }}
backoffLimit: 3

View file

@ -1,48 +0,0 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "vikunja.fullname" . }}
labels:
{{- include "vikunja.labels" . | nindent 4 }}
spec:
replicas: 1
selector:
matchLabels:
app: {{ include "vikunja.fullname" . }}
template:
metadata:
labels:
app: {{ include "vikunja.fullname" . }}
spec:
serviceAccountName: {{ include "vikunja.fullname" . }}
containers:
- name: {{ include "vikunja.fullname" . }}
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
envFrom:
- secretRef:
name: {{ .Values.envFromSecret }}
env:
- name: VIKUNJA_SERVICE_PUBLICURL
value: {{ .Values.config.externalUrl }}
- name: VIKUNJA_DATABASE_TYPE
value: postgres
resources:
{{- toYaml .Values.resources | nindent 10 }}
ports:
- containerPort: 29316
name: http
volumeMounts:
- name: {{ include "vikunja.fullname" . }}
mountPath: "/app/vikunja/files"
readOnly: false
- name: config
mountPath: "/app/vikunja/config.yml"
subPath: config.yml
readOnly: true
volumes:
- name: {{ include "vikunja.fullname" . }}
persistentVolumeClaim:
claimName: {{ .Values.persistence.existingClaim }}
- name: config
secret:
secretName: {{ .Values.existingSecretConfigMap }}

View file

@ -1,13 +0,0 @@
---
apiVersion: v1
kind: Service
metadata:
name: {{ include "vikunja.fullname" . }}
labels:
{{- include "vikunja.labels" . | nindent 4 }}
spec:
selector:
app: {{ include "vikunja.fullname" . }}
ports:
- port: 8080
targetPort: 3456

View file

@ -1,7 +0,0 @@
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "vikunja.fullname" . }}
labels:
{{- include "vikunja.labels" . | nindent 4 }}

View file

@ -1,33 +0,0 @@
config:
externalUrl: https://vikunja.example.com/
existingSecretConfigMap: vikunja-secret
persistence:
existingClaim: vikunja
initContainers:
dbInit:
image:
repository: ghcr.io/onedr0p/postgres-init
tag: "16"
envFrom:
- secretRef:
name: vikunja-secret
envFromSecret: vikunja-secret
image:
repository: vikunja/vikunja
tag: 0.23.0
postgres:
secretName: vikunja-secret
resources:
limits:
memory: "1Gi"
cpu: "500m"
# requests:
# cpu: 100m
# memory: 250Mi

View file

@ -1,33 +0,0 @@
config:
externalUrl: https://vikunja.example.com/
existingSecretConfigMap: vikunja-secret
persistence:
existingClaim: vikunja
initContainers:
dbInit:
image:
repository: ghcr.io/onedr0p/postgres-init
tag: "16"
envFrom:
- secretRef:
name: vikunja-secret
envFromSecret: vikunja-secret
image:
repository: vikunja/vikunja
tag: 0.24.4
postgres:
secretName: vikunja-secret
resources:
limits:
memory: "1Gi"
cpu: "500m"
# requests:
# cpu: 100m
# memory: 250Mi