Add cloudflared remote
This commit is contained in:
parent
8153a1984a
commit
62ecb1cf7c
8
cloudflare-tunnel-remote/Chart.yaml
Normal file
8
cloudflare-tunnel-remote/Chart.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
appVersion: latest
|
||||||
|
description: Deployment of a remotely managed tunnel that has already been provisioned
|
||||||
|
in Cloudflare
|
||||||
|
icon: https://developers.cloudflare.com/cloudflare-one/favicon-32x32.png
|
||||||
|
name: cloudflare-tunnel-remote
|
||||||
|
type: application
|
||||||
|
version: 0.1.1
|
||||||
@ -1,7 +1,7 @@
|
|||||||
{{/*
|
{{/*
|
||||||
Expand the name of the chart.
|
Expand the name of the chart.
|
||||||
*/}}
|
*/}}
|
||||||
{{- define "cloudflare-tunnel.name" -}}
|
{{- define "cloudflare-tunnel-remote.name" -}}
|
||||||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
|
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
@ -10,7 +10,7 @@ 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).
|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
||||||
If release name contains chart name it will be used as a full name.
|
If release name contains chart name it will be used as a full name.
|
||||||
*/}}
|
*/}}
|
||||||
{{- define "cloudflare-tunnel.fullname" -}}
|
{{- define "cloudflare-tunnel-remote.fullname" -}}
|
||||||
{{- if .Values.fullnameOverride }}
|
{{- if .Values.fullnameOverride }}
|
||||||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
|
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
@ -26,16 +26,16 @@ If release name contains chart name it will be used as a full name.
|
|||||||
{{/*
|
{{/*
|
||||||
Create chart name and version as used by the chart label.
|
Create chart name and version as used by the chart label.
|
||||||
*/}}
|
*/}}
|
||||||
{{- define "cloudflare-tunnel.chart" -}}
|
{{- define "cloudflare-tunnel-remote.chart" -}}
|
||||||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
Common labels
|
Common labels
|
||||||
*/}}
|
*/}}
|
||||||
{{- define "cloudflare-tunnel.labels" -}}
|
{{- define "cloudflare-tunnel-remote.labels" -}}
|
||||||
helm.sh/chart: {{ include "cloudflare-tunnel.chart" . }}
|
helm.sh/chart: {{ include "cloudflare-tunnel-remote.chart" . }}
|
||||||
{{ include "cloudflare-tunnel.selectorLabels" . }}
|
{{ include "cloudflare-tunnel-remote.selectorLabels" . }}
|
||||||
{{- if .Chart.AppVersion }}
|
{{- if .Chart.AppVersion }}
|
||||||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
@ -45,7 +45,18 @@ app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|||||||
{{/*
|
{{/*
|
||||||
Selector labels
|
Selector labels
|
||||||
*/}}
|
*/}}
|
||||||
{{- define "cloudflare-tunnel.selectorLabels" -}}
|
{{- define "cloudflare-tunnel-remote.selectorLabels" -}}
|
||||||
app.kubernetes.io/name: {{ include "cloudflare-tunnel.name" . }}
|
app.kubernetes.io/name: {{ include "cloudflare-tunnel-remote.name" . }}
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Create the name of the service account to use
|
||||||
|
*/}}
|
||||||
|
{{- define "cloudflare-tunnel-remote.serviceAccountName" -}}
|
||||||
|
{{- if .Values.serviceAccount.create }}
|
||||||
|
{{- default (include "cloudflare-tunnel-remote.fullname" .) .Values.serviceAccount.name }}
|
||||||
|
{{- else }}
|
||||||
|
{{- default "default" .Values.serviceAccount.name }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
53
cloudflare-tunnel-remote/templates/deployment.yaml
Normal file
53
cloudflare-tunnel-remote/templates/deployment.yaml
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: {{ include "cloudflare-tunnel-remote.fullname" . }}
|
||||||
|
labels:
|
||||||
|
{{- include "cloudflare-tunnel-remote.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
replicas: {{ .Values.replicaCount }}
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
pod: cloudflared
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
creationTimestamp: null
|
||||||
|
annotations:
|
||||||
|
# These are here so the deployment rolls when the config or secret change.
|
||||||
|
checksum/secret: {{ .Values.cloudflare.tunnel_token | sha256sum }}
|
||||||
|
{{- with .Values.podAnnotations }}
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
labels:
|
||||||
|
pod: cloudflared
|
||||||
|
spec:
|
||||||
|
serviceAccountName: {{ include "cloudflare-tunnel-remote.fullname" . }}
|
||||||
|
containers:
|
||||||
|
- name: cloudflared
|
||||||
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default "latest" }}"
|
||||||
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
|
command:
|
||||||
|
- cloudflared
|
||||||
|
- tunnel
|
||||||
|
# We can regulate the cloudflared version via an image tag.
|
||||||
|
- --no-autoupdate
|
||||||
|
# In a k8s environment, the metrics server needs to listen outside the pod it runs on.
|
||||||
|
# The address 0.0.0.0:2000 allows any pod in the namespace.
|
||||||
|
- --metrics
|
||||||
|
- 0.0.0.0:2000
|
||||||
|
- run
|
||||||
|
env:
|
||||||
|
- name: TUNNEL_TOKEN
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: {{ include "cloudflare-tunnel-remote.fullname" . }}
|
||||||
|
key: tunnelToken
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
# Cloudflared has a /ready endpoint which returns 200 if and only if
|
||||||
|
# it has an active connection to the edge.
|
||||||
|
path: /ready
|
||||||
|
port: 2000
|
||||||
|
failureThreshold: 1
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
periodSeconds: 10
|
||||||
10
cloudflare-tunnel-remote/templates/secret.yaml
Normal file
10
cloudflare-tunnel-remote/templates/secret.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# This credentials secret allows cloudflared to authenticate itself
|
||||||
|
# to the Cloudflare infrastructure.
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Secret
|
||||||
|
metadata:
|
||||||
|
name: {{ include "cloudflare-tunnel-remote.fullname" . }}
|
||||||
|
labels:
|
||||||
|
{{- include "cloudflare-tunnel-remote.labels" . | nindent 4 }}
|
||||||
|
stringData:
|
||||||
|
tunnelToken: {{ .Values.cloudflare.tunnel_token }}
|
||||||
@ -3,9 +3,9 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ServiceAccount
|
kind: ServiceAccount
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ include "cloudflare-tunnel.fullname" . }}
|
name: {{ include "cloudflare-tunnel-remote.fullname" . }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "cloudflare-tunnel.labels" . | nindent 4 }}
|
{{- include "cloudflare-tunnel-remote.labels" . | nindent 4 }}
|
||||||
{{- with .Values.serviceAccount.annotations }}
|
{{- with .Values.serviceAccount.annotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
59
cloudflare-tunnel-remote/values.home.yaml
Normal file
59
cloudflare-tunnel-remote/values.home.yaml
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
# Default values for cloudflare-tunnel.
|
||||||
|
|
||||||
|
# Cloudflare parameters.
|
||||||
|
cloudflare:
|
||||||
|
tunnel_token: "eyJhIjoiNmRlYmQ1NmE5N2VhMmFkOTM4ZjA3NDI4ZWU1NGYxMmEiLCJ0IjoiMGQ3ZjhkYWMtOTUzMC00NzU2LWI0ZTgtMTc0YTllOGNlZTkxIiwicyI6IllqUXdNVE15TVdVdE1tUXlOUzAwTXpVM0xUa3dOMk10TW1SbU16RmlNemxsTTJZNCJ9"
|
||||||
|
|
||||||
|
image:
|
||||||
|
repository: cloudflare/cloudflared
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
# If supplied, this overrides "latest"
|
||||||
|
tag: ""
|
||||||
|
|
||||||
|
replicaCount: 2
|
||||||
|
|
||||||
|
imagePullSecrets: []
|
||||||
|
nameOverride: ""
|
||||||
|
fullnameOverride: ""
|
||||||
|
|
||||||
|
serviceAccount:
|
||||||
|
# Annotations to add to the service account
|
||||||
|
annotations: {}
|
||||||
|
# The name of the service account to use.
|
||||||
|
# If not set and create is true, a name is generated using the fullname template
|
||||||
|
name: ""
|
||||||
|
|
||||||
|
podAnnotations: {}
|
||||||
|
|
||||||
|
# Security items common to everything in the pod. Here we require that it
|
||||||
|
# does not run as the user defined in the image, literally named "nonroot".
|
||||||
|
podSecurityContext:
|
||||||
|
runAsNonRoot: true
|
||||||
|
runAsUser: 65532
|
||||||
|
|
||||||
|
# Security items for one container. We lock it down.
|
||||||
|
securityContext:
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
capabilities:
|
||||||
|
drop:
|
||||||
|
- ALL
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
|
|
||||||
|
resources:
|
||||||
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
||||||
|
# choice for the user. This also increases chances charts run on environments with little
|
||||||
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
||||||
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
||||||
|
# limits:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 128Mi
|
||||||
|
requests:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 128Mi
|
||||||
|
|
||||||
|
nodeSelector: {}
|
||||||
|
|
||||||
|
tolerations: []
|
||||||
|
|
||||||
|
# Default affinity is to spread out over nodes; use this to override.
|
||||||
|
affinity: {}
|
||||||
@ -2,34 +2,12 @@
|
|||||||
|
|
||||||
# Cloudflare parameters.
|
# Cloudflare parameters.
|
||||||
cloudflare:
|
cloudflare:
|
||||||
# Your Cloudflare account number.
|
tunnel_token: ""
|
||||||
account: ""
|
|
||||||
# The name of the tunnel this instance will serve
|
|
||||||
tunnelName: ""
|
|
||||||
# The ID of the above tunnel.
|
|
||||||
tunnelId: ""
|
|
||||||
# The secret for the tunnel.
|
|
||||||
secret: ""
|
|
||||||
# If defined, no secret is created for the credentials, and instead, the secret referenced is used
|
|
||||||
secretName: null
|
|
||||||
# If true, turn on WARP routing for TCP
|
|
||||||
enableWarp: false
|
|
||||||
# Define ingress rules for the tunnel. See
|
|
||||||
# https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/configuration/configuration-file/ingress
|
|
||||||
ingress: []
|
|
||||||
# The first rule proxies traffic to the httpbin sample service named web-server at port 80
|
|
||||||
# - hostname: tunnel.example.com
|
|
||||||
# service: http://web-service:80
|
|
||||||
# This rule sends traffic to the built-in hello-world HTTP server. This can help debug connectivity
|
|
||||||
# issues. If hello.example.com resolves and tunnel.example.com does not, then the problem is
|
|
||||||
# in the connection from cloudflared to your local service, not from the internet to cloudflared.
|
|
||||||
# - hostname: hello.example.com
|
|
||||||
# service: hello_world
|
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: cloudflare/cloudflared
|
repository: cloudflare/cloudflared
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# If supplied, this overrides "appVersion"
|
# If supplied, this overrides "latest"
|
||||||
tag: ""
|
tag: ""
|
||||||
|
|
||||||
replicaCount: 2
|
replicaCount: 2
|
||||||
@ -1,23 +0,0 @@
|
|||||||
# Patterns to ignore when building packages.
|
|
||||||
# This supports shell glob matching, relative path matching, and
|
|
||||||
# negation (prefixed with !). Only one pattern per line.
|
|
||||||
.DS_Store
|
|
||||||
# Common VCS dirs
|
|
||||||
.git/
|
|
||||||
.gitignore
|
|
||||||
.bzr/
|
|
||||||
.bzrignore
|
|
||||||
.hg/
|
|
||||||
.hgignore
|
|
||||||
.svn/
|
|
||||||
# Common backup files
|
|
||||||
*.swp
|
|
||||||
*.bak
|
|
||||||
*.tmp
|
|
||||||
*.orig
|
|
||||||
*~
|
|
||||||
# Various IDEs
|
|
||||||
.project
|
|
||||||
.idea/
|
|
||||||
*.tmproj
|
|
||||||
.vscode/
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
apiVersion: v2
|
|
||||||
appVersion: 2023.5.1
|
|
||||||
description: Creation of a cloudflared deployment - a reverse tunnel for an environment
|
|
||||||
icon: https://developers.cloudflare.com/cloudflare-one/favicon-32x32.png
|
|
||||||
name: cloudflare-tunnel
|
|
||||||
type: application
|
|
||||||
version: 0.3.0
|
|
||||||
@ -1,29 +0,0 @@
|
|||||||
# This configmap stores the configuration used by cloudflared.
|
|
||||||
apiVersion: v1
|
|
||||||
kind: ConfigMap
|
|
||||||
metadata:
|
|
||||||
name: {{ include "cloudflare-tunnel.fullname" . }}
|
|
||||||
data:
|
|
||||||
config.yaml: |
|
|
||||||
# Name of the tunnel you want to run
|
|
||||||
tunnel: {{ .Values.cloudflare.tunnelName }}
|
|
||||||
# The location of the secret containing the tunnel credentials
|
|
||||||
credentials-file: /etc/cloudflared/creds/credentials.json
|
|
||||||
# General purpose TCP routing for the network
|
|
||||||
warp-routing:
|
|
||||||
enabled: {{ .Values.cloudflare.enableWarp }}
|
|
||||||
# Serves the metrics server under /metrics and the readiness server under /ready
|
|
||||||
metrics: 0.0.0.0:2000
|
|
||||||
# Autoupdates applied in a k8s pod will be lost when the pod is removed or restarted, so
|
|
||||||
# autoupdate doesn't make sense in Kubernetes. However, outside of Kubernetes, we strongly
|
|
||||||
# recommend using autoupdate.
|
|
||||||
no-autoupdate: true
|
|
||||||
# The `ingress` block tells cloudflared which local service to route incoming
|
|
||||||
# requests to. For more about ingress rules, see
|
|
||||||
# https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/configuration/ingress
|
|
||||||
ingress:
|
|
||||||
{{- with .Values.cloudflare.ingress }}
|
|
||||||
{{- toYaml . | nindent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
# This rule matches any traffic which didn't match a previous rule, and responds with HTTP 404.
|
|
||||||
- service: http_status:404
|
|
||||||
@ -1,102 +0,0 @@
|
|||||||
# Here we deploy cloudflared images. The tunnel credentials are stored in
|
|
||||||
# a k8s secret, and the configuration is stored in a k8s configmap.
|
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: {{ include "cloudflare-tunnel.fullname" . }}
|
|
||||||
labels:
|
|
||||||
{{- include "cloudflare-tunnel.labels" . | nindent 4 }}
|
|
||||||
spec:
|
|
||||||
replicas: {{ .Values.replicaCount }}
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
{{- include "cloudflare-tunnel.selectorLabels" . | nindent 6 }}
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
annotations:
|
|
||||||
# These are here so the deployment rolls when the config or secret change.
|
|
||||||
checksum/configmap: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
|
|
||||||
checksum/secret: {{ include (print $.Template.BasePath "/secret.yaml") . | sha256sum }}
|
|
||||||
{{- with .Values.podAnnotations }}
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
labels:
|
|
||||||
{{- include "cloudflare-tunnel.selectorLabels" . | nindent 8 }}
|
|
||||||
spec:
|
|
||||||
{{- with .Values.imagePullSecrets }}
|
|
||||||
imagePullSecrets:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
serviceAccountName: {{ include "cloudflare-tunnel.fullname" . }}
|
|
||||||
securityContext:
|
|
||||||
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
|
||||||
containers:
|
|
||||||
- name: {{ .Chart.Name }}
|
|
||||||
securityContext:
|
|
||||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
||||||
args:
|
|
||||||
- tunnel
|
|
||||||
# Points cloudflared to the config file, which configures what
|
|
||||||
# cloudflared will actually do. This file is created by a ConfigMap.
|
|
||||||
- --config
|
|
||||||
- /etc/cloudflared/config/config.yaml
|
|
||||||
- run
|
|
||||||
livenessProbe:
|
|
||||||
httpGet:
|
|
||||||
# Cloudflared has a /ready endpoint which returns 200 if and only if
|
|
||||||
# it has an active connection to the edge.
|
|
||||||
path: /ready
|
|
||||||
port: 2000
|
|
||||||
failureThreshold: 1
|
|
||||||
initialDelaySeconds: 10
|
|
||||||
periodSeconds: 10
|
|
||||||
volumeMounts:
|
|
||||||
- name: config
|
|
||||||
mountPath: /etc/cloudflared/config
|
|
||||||
readOnly: true
|
|
||||||
# Each tunnel has an associated "credentials file" which authorizes machines
|
|
||||||
# to run the tunnel. cloudflared will read this file from its local filesystem,
|
|
||||||
# and it'll be stored in a k8s secret.
|
|
||||||
- name: creds
|
|
||||||
mountPath: /etc/cloudflared/creds
|
|
||||||
readOnly: true
|
|
||||||
resources:
|
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
|
||||||
volumes:
|
|
||||||
- name: creds
|
|
||||||
secret:
|
|
||||||
secretName: {{ .Values.cloudflare.secretName | default (include "cloudflare-tunnel.fullname" .) }}
|
|
||||||
- name: config
|
|
||||||
configMap:
|
|
||||||
name: {{ include "cloudflare-tunnel.fullname" . }}
|
|
||||||
items:
|
|
||||||
- key: config.yaml
|
|
||||||
path: config.yaml
|
|
||||||
{{- with .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
affinity:
|
|
||||||
{{- with .Values.affinity }}
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- else }}
|
|
||||||
podAntiAffinity:
|
|
||||||
preferredDuringSchedulingIgnoredDuringExecution:
|
|
||||||
- weight: 10
|
|
||||||
podAffinityTerm:
|
|
||||||
topologyKey: kubernetes.io/hostname
|
|
||||||
labelSelector:
|
|
||||||
matchExpressions:
|
|
||||||
{{- range $k, $v := include "cloudflare-tunnel.selectorLabels" . | fromYaml }}
|
|
||||||
- key: {{ $k }}
|
|
||||||
operator: In
|
|
||||||
values:
|
|
||||||
- {{ $v }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.tolerations }}
|
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
@ -1,17 +0,0 @@
|
|||||||
{{- if and (and .Values.cloudflare.account .Values.cloudflare.tunnelId .Values.cloudflare.secret) (not .Values.cloudflare.secretName) }}
|
|
||||||
# This credentials secret allows cloudflared to authenticate itself
|
|
||||||
# to the Cloudflare infrastructure.
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Secret
|
|
||||||
metadata:
|
|
||||||
name: {{ include "cloudflare-tunnel.fullname" . }}
|
|
||||||
labels:
|
|
||||||
{{- include "cloudflare-tunnel.labels" . | nindent 4 }}
|
|
||||||
stringData:
|
|
||||||
credentials.json: |-
|
|
||||||
{
|
|
||||||
"AccountTag": {{ .Values.cloudflare.account | quote }},
|
|
||||||
"TunnelID": {{ .Values.cloudflare.tunnelId | quote }},
|
|
||||||
"TunnelSecret": {{ .Values.cloudflare.secret | quote }}
|
|
||||||
}
|
|
||||||
{{- end }}
|
|
||||||
Loading…
Reference in New Issue
Block a user