mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
423 B
28 lines
423 B
apiVersion: v1 |
|
kind: Service |
|
metadata: |
|
name: dex |
|
spec: |
|
ports: |
|
- name: dex |
|
port: 5556 |
|
selector: |
|
app: dex |
|
--- |
|
apiVersion: extensions/v1beta1 |
|
kind: Ingress |
|
metadata: |
|
name: dex |
|
spec: |
|
tls: |
|
- secretName: dex.example.com.tls |
|
hosts: |
|
- dex.example.com |
|
rules: |
|
- host: dex.example.com |
|
http: |
|
paths: |
|
- backend: |
|
serviceName: dex |
|
servicePort: 5556 |
|
path: /
|
|
|