Add phpMyAdmin Studio service

This commit is contained in:
Arvind Prabhakar 2026-09-05 23:41:11 +00:00
commit b494e08cb8
11 changed files with 224 additions and 0 deletions

View file

@ -0,0 +1,32 @@
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: phpmyadmin
namespace: phpmyadmin
spec:
parentRefs:
- name: public-gateway
namespace: apps
hostnames:
- "www.symcrest.com"
rules:
- matches:
- path:
type: Exact
value: /services/studio/phpmyadmin
filters:
- type: RequestRedirect
requestRedirect:
scheme: https
path:
type: ReplaceFullPath
replaceFullPath: /services/studio/phpmyadmin/
statusCode: 301
- matches:
- path:
type: PathPrefix
value: /services/studio/phpmyadmin/
backendRefs:
- name: phpmyadmin
port: 80