Skip to content

Commit

Permalink
add comment to clarify CNAMEs for values
Browse files Browse the repository at this point in the history
  • Loading branch information
shuffmintel committed Feb 26, 2024
1 parent 5f78e1c commit 708c727
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions charts/standard-application-stack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v6.0.1] - 2024-02-14
### Added
- Added comment to clarify CNAMEs for `ingress.extraHost` values.

## [v6.0.0] - 2024-02-14
### Removed
- Remove support for hybridCloud. No longer managed as a feature-flag in the helm chart.
Expand Down
2 changes: 1 addition & 1 deletion charts/standard-application-stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 6.0.0
version: 6.0.1

dependencies:
- name: redis
Expand Down
4 changes: 2 additions & 2 deletions charts/standard-application-stack/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# standard-application-stack

![Version: 6.0.0](https://img.shields.io/badge/Version-6.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 6.0.1](https://img.shields.io/badge/Version-6.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

A generic chart to support most common application requirements

Expand Down Expand Up @@ -150,7 +150,7 @@ A generic chart to support most common application requirements
| ingress.blackbox.probeScheme | string | `"https"` | Scheme (http/https) for blackboxes to hit |
| ingress.enabled | bool | `false` | Set to true to enable ingress record generation |
| ingress.extraAnnotations | object | `{}` | Additional Ingress annotations For a full list of possible ingress annotations, please see ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md |
| ingress.extraHosts | list | `[]` | List of extra ingress hosts to setup |
| ingress.extraHosts | list | `[]` | List of extra ingress hosts to setup. The CNAMEs for these hosts must already exist, please reach out to the Infrastructure team to create them if needed. |
| ingress.extraIngresses | list | `[]` | Optional: ability to construct multiple ingresses with different settings (names, cache headers, etc) This accepts all the same values as the top-level ingress. It also inherits its default values from the top-level ingress, so all differences must be overridden per-instance. |
| ingress.setNoCacheHeaders | bool | `false` | Only applies for 'haproxy' ingresses; Sets no-cache headers |
| ingress.setXForwardedForHeaders | bool | `false` | Only applies for 'haproxy' ingresses; Sets X-Forwarded-For headers |
Expand Down
3 changes: 2 additions & 1 deletion charts/standard-application-stack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,8 @@ ingress:
setNoCacheHeaders: false
# -- Enable TLS configuration for the hostname defined at ingress.hostname parameter
tls: true
# -- List of extra ingress hosts to setup
# -- List of extra ingress hosts to setup.
# The CNAMEs for these hosts must already exist, please reach out to the Infrastructure team to create them if needed.
extraHosts: []
# extraHosts:
# - name: ""
Expand Down

0 comments on commit 708c727

Please sign in to comment.