2.3 Customize values & ingress

Set your own values

  1. Ingress host in helm/vprofile/values.yaml:

    ingress:
      enabled: true
      host: vprofile.<your-domain>
      servicePort: 8080
    
  2. Certificate ARN in helm/vprofile/templates/ingress.yaml:

    alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:<region>:<account-id>:certificate/<id>
    
  3. (Optional) Change the base64 passwords in secrets: echo -n 'pass' | base64.

Quick check:

helm lint helm/vprofile
helm template vprofile helm/vprofile

Commit and push the vprofile-helm changes after editing.