Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Navigate to https://ngen-manager.rezfusion.com/ and login using your Auth0 credentials

    image-20240111-163421.png
  2. Navigate to the desired website, in our use-case example it will be bttessentials:

    image-20240111-164639.png
  3. At the bottom, click “Add Hostname” and add the desired DNS value(s). Check “Redirect traffic to WWW” to also support routing to www. URLs.

  4. image-20240111-164749.png

  5. Save the site configuration. If successful, you will be redirected to the list of sites. Several jobs related to site promotion should kick off within the wp-platform namespace of the Kubernetes cluster associated with production. These jobs are detailed in the specs & capabilities portion of this Confluence space.

  6. The site ID’s ingress should reflect the new hostname entry within minutes:

    Code Block
    languageyaml
    kckubectl get ing -n wp-platform condosbttessentials -o yaml
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      annotations:
        cert-manager.io/cluster-issuer: letsencrypt
        kubernetes.io/tls-acme: "true"
        nginx.ingress.kubernetes.io/proxy-body-size: 250m
        nginx.ingress.kubernetes.io/rewrite-target: /
        nginx.ingress.kubernetes.io/upstream-vhost: bttessentials.rezfusion.com
      creationTimestamp: "2023-11-30T20:48:05Z"
      generation: 6
      labels:
        app: green
        condos-pipeline-name: UPDATE_INGRESS
        moniker: bttessentials
        queue-id: "10"
        queue-name: upgrade
      name: condos
      namespace: wp-platform
      resourceVersion: "163479485"
      uid: aca25f14-d124-42ca-b7ff-21a8932b4f06
    spec:
      ingressClassName: nginx
      rules:
      - host: conallscondos.com
        http:
          paths:
          - backend:
              service:
                name: green
                port:
                  number: 80
            path: /
            pathType: Prefix
      - host: www.conallscondos.com
        http:
          paths:
          - backend:
              service:
                name: green
                port:
                  number: 80
            path: /
            pathType: Prefix

...