use https
ci / build (push) Waiting to run Details

This commit is contained in:
CJ_Clippy 2024-06-29 16:38:01 -08:00
parent 4580751208
commit b8eea1e764
2 changed files with 28 additions and 22 deletions

View File

@ -1,7 +1,7 @@
apiVersion: v1 apiVersion: v1
name: fp name: fp
description: The Galaxy's Best VTuber Hentai Site description: The Galaxy's Best VTuber Hentai Site
version: 0.0.31 version: 0.0.32
keywords: keywords:
- fp - fp
- futureporn - futureporn

View File

@ -40,26 +40,9 @@ spec:
- protocol: TCP - protocol: TCP
port: 80 port: 80
targetPort: 5678 targetPort: 5678
- protocol: TCP
# --- port: 443
# apiVersion: traefik.io/v1alpha1 targetPort: 5678
# kind: IngressRoute
# metadata:
# name: echo
# namespace: futureporn
# spec:
# entryPoints:
# - web
# - websecure
# tls:
# secretName: echo-cert
# routes:
# - match: Host(`echo.fp.sbtp.xyz`) || PathPrefix(`/extra/echo`)
# kind: Rule
# services:
# - name: echo
# port: 8001
--- ---
apiVersion: networking.k8s.io/v1 apiVersion: networking.k8s.io/v1
@ -69,7 +52,8 @@ metadata:
namespace: futureporn namespace: futureporn
annotations: annotations:
kubernetes.io/ingress.class: traefik kubernetes.io/ingress.class: traefik
traefik.ingress.kubernetes.io/router.entrypoints: web traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.tls: "true"
cert-manager.io/cluster-issuer: "{{ .Values.certManager.issuer }}" cert-manager.io/cluster-issuer: "{{ .Values.certManager.issuer }}"
spec: spec:
ingressClassName: traefik ingressClassName: traefik
@ -100,3 +84,25 @@ spec:
port: 9090 port: 9090
auth: chisel auth: chisel
{{ end }} {{ end }}
# ---
# apiVersion: traefik.io/v1alpha1
# kind: IngressRoute
# metadata:
# name: echo
# namespace: futureporn
# spec:
# entryPoints:
# - web
# - websecure
# tls:
# secretName: echo-cert
# routes:
# - match: Host(`echo.fp.sbtp.xyz`) || PathPrefix(`/extra/echo`)
# kind: Rule
# services:
# - name: echo
# port: 8001