chore(repo): cleanup unused repos
This commit is contained in:
parent
7a7cea0df5
commit
4d02d60eaf
9 changed files with 0 additions and 210 deletions
|
@ -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
|
||||
|
|
@ -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
|
|
@ -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.
|
|
@ -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
|
|
@ -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 }}
|
|
@ -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
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: {{ include "vikunja.fullname" . }}
|
||||
labels:
|
||||
{{- include "vikunja.labels" . | nindent 4 }}
|
|
@ -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
|
|
@ -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
|
Loading…
Reference in a new issue