Upload files to "/"
This commit is contained in:
66
antinix-test-ingress.yaml
Normal file
66
antinix-test-ingress.yaml
Normal file
@@ -0,0 +1,66 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: memelord
|
||||
spec:
|
||||
type: ClusterIP
|
||||
selector:
|
||||
app: memelord
|
||||
ports:
|
||||
- name: http
|
||||
port: 80
|
||||
targetPort: 8000
|
||||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: Certificate
|
||||
metadata:
|
||||
name: antinix-test
|
||||
spec:
|
||||
secretName: antinix-test-app-tls
|
||||
dnsNames:
|
||||
- antinix-test-app.ee-lte-1.codemowers.io
|
||||
issuerRef:
|
||||
name: letsencrypt
|
||||
kind: ClusterIssuer
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: antinix-test
|
||||
annotations:
|
||||
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
||||
spec:
|
||||
rules:
|
||||
- host: antinix-test-app.ee-lte-1.codemowers.io
|
||||
http:
|
||||
paths:
|
||||
- pathType: Prefix
|
||||
path: "/"
|
||||
backend:
|
||||
service:
|
||||
name: memelord
|
||||
port:
|
||||
number: 80
|
||||
tls:
|
||||
- secretName: antinix-test-app-tls
|
||||
---
|
||||
apiVersion: codemowers.cloud/v1beta1
|
||||
kind: OIDCClient
|
||||
metadata:
|
||||
name: antinix-test
|
||||
spec:
|
||||
displayName: Antinix test
|
||||
uri: https://antinix-test-app.ee-lte-1.codemowers.io/oidc/authenticate/
|
||||
redirectUris:
|
||||
- https://antinix-test-app.ee-lte-1.codemowers.io/oidc/callback/
|
||||
grantTypes:
|
||||
- authorization_code
|
||||
- refresh_token
|
||||
responseTypes:
|
||||
- code
|
||||
availableScopes:
|
||||
- openid
|
||||
- profile
|
||||
pkce: false
|
||||
|
||||
Reference in New Issue
Block a user