add outline

This commit is contained in:
2024-03-13 04:43:14 -06:00
parent 72f5ebc567
commit a6d3eaf404
8 changed files with 378 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
apiVersion: v1
kind: Service
metadata:
name: outline-web
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: outline-web
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: outline
spec:
type: ClusterIP
ports:
- port: {{ .Values.service.web.port }}
targetPort: web
protocol: TCP
name: web
selector:
app.kubernetes.io/name: outline-web
app.kubernetes.io/instance: {{ .Release.Name }}