# FlowerCore Remote Desktop — TLS + Ingress # Deployment and Service managed by deploy script (not ArgoCD) --- apiVersion: cert-manager.io/v1 kind: Certificate metadata: name: remotedesktop-web-tls namespace: fc-desktop spec: secretName: remotedesktop-web-tls issuerRef: name: step-ca-acme kind: ClusterIssuer dnsNames: - desktop.iamworkin.lan --- apiVersion: traefik.io/v1alpha1 kind: IngressRoute metadata: name: remotedesktop-web namespace: fc-desktop spec: entryPoints: - websecure routes: # Host-level catch-all for desktop.iamworkin.lan. The /guacamole # path-prefix match lives in apps/guacamole/guacamole.yaml as a # separate IngressRoute in the guacamole namespace — the cluster # Traefik disallows cross-namespace service refs, so the PathPrefix # rule can't sit here. Traefik's router matching precedence gives # longer/more-specific rules priority automatically, so as long as # the guacamole IngressRoute exists it takes /guacamole traffic # before this catch-all sees it. - match: Host(`desktop.iamworkin.lan`) kind: Rule services: - name: remotedesktop-web port: 8080 tls: secretName: remotedesktop-web-tls