This commit is contained in:
2025-03-19 05:26:29 -05:00
parent c24dcdfe2c
commit 843f050195

View File

@@ -1,82 +1,76 @@
#apiVersion: v1 apiVersion: v1
#kind: Service kind: Service
#metadata: metadata:
# name: smokeping name: smokeping
#spec: spec:
# ports: ports:
# - name: app - name: app
# port: 81 port: 81
# protocol: TCP protocol: TCP
# targetPort: 81 targetPort: 81
# clusterIP: None clusterIP: None
# type: ClusterIP type: ClusterIP
#
#--- ---
#
#apiVersion: v1 apiVersion: v1
#kind: Endpoints kind: Endpoints
#metadata: metadata:
# name: smokeping name: smokeping
#subsets: subsets:
#- addresses: - addresses:
# - ip: 192.168.20.200 - ip: 192.168.21.200
# ports: ports:
# - name: app - name: app
# port: 81 port: 81
# protocol: TCP protocol: TCP
#
#--- ---
#
#apiVersion: traefik.io/v1alpha1 apiVersion: traefik.io/v1alpha1
#kind: IngressRoute kind: IngressRoute
#metadata: metadata:
# name: smokeping-ingress name: smokeping-ingress
#spec: spec:
# entryPoints: entryPoints:
# - websecure - websecure
# routes: routes:
# - match: Host(`smokeping.durp.info`) && PathPrefix(`/`) - match: Host(`smokeping.durp.info`) && PathPrefix(`/`)
# middlewares: middlewares:
# - name: whitelist - name: whitelist
# namespace: traefik namespace: traefik
# - name: authentik-proxy-provider - name: authentik-proxy-provider
# namespace: traefik namespace: traefik
# kind: Rule kind: Rule
# services: services:
# - name: smokeping - name: smokeping
# port: 81 port: 81
# - match: Host(`smokeping.durp.info`) && PathPrefix(`/outpost.goauthentik.io`) tls:
# kind: Rule secretName: smokeping-tls
# services:
# - name: ak-outpost-authentik-embedded-outpost ---
# namespace: authentik
# port: 9000 apiVersion: cert-manager.io/v1
# tls: kind: Certificate
# secretName: smokeping-tls metadata:
# name: smokeping-tls
#--- spec:
# secretName: smokeping-tls
#apiVersion: cert-manager.io/v1 issuerRef:
#kind: Certificate name: letsencrypt-production
#metadata: kind: ClusterIssuer
# name: smokeping-tls commonName: "smokeping.durp.info"
#spec: dnsNames:
# secretName: smokeping-tls - "smokeping.durp.info"
# issuerRef:
# name: letsencrypt-production ---
# kind: ClusterIssuer
# commonName: "smokeping.durp.info" kind: Service
# dnsNames: apiVersion: v1
# - "smokeping.durp.info" metadata:
# name: smokeping-external-dns
#--- annotations:
# external-dns.alpha.kubernetes.io/hostname: smokeping.durp.info
#kind: Service spec:
#apiVersion: v1 type: ExternalName
#metadata: externalName: durp.info
# name: smokeping-external-dns
# annotations:
# external-dns.alpha.kubernetes.io/hostname: smokeping.durp.info
#spec:
# type: ExternalName
# externalName: durp.info