Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Code Block | ||
---|---|---|
| ||
apiVersion: cert-manager.io/v1 kind: ClusterIssuer metadata: name: letsencrypt-staging spec: acme: # The ACME server URL server: https://acme-staging-v02.api.letsencrypt.org/directory # Email address used for ACME registration email: [update email here] # Name of a secret used to store the ACME account private key privateKeySecretRef: name: letsencrypt-staging # Enable the HTTP-01 challenge provider solvers: - http01: ingress: class: nginx |
Code Block |
---|
kubectl apply -f stagingissuer.yaml |
...
Code Block | ||
---|---|---|
| ||
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: joget-dx7-tomcat9-ingress
annotations:
nginx.ingress.kubernetes.io/affinity: cookie
nginx.ingress.kubernetes.io/ssl-redirect: "true"
cert-manager.io/cluster-issuer: "letsencrypt-prod"
spec:
ingressClassName: nginx
tls:
- hosts:
- exampledomain.com
secretName : aks-jogetworkflow
rules:
- host: exampledomain.com
- http:
paths:
- path: /jw
pathType: Prefix
backend:
service:
name: joget-dx7-tomcat9
port:
number: 9080 |
...