Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes Helm Charts Part ONE #523

Merged
merged 2 commits into from
Jun 7, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ asciidoc:
# helm_tab_x will be used to assemble the url (tag) accessing the raw content for helm charts (tag)
# note that tab 2 always contains the actual release and tab 3 the former
helm_tab_1: 'master'
helm_tab_2: 'v0.2.0'
helm_tab_2: 'v0.3.0'
helm_tab_3: 'v0.1.0'

# helm_tab_x_tab_text will be used as tab text shown for tab_x
# note that tab 2 always contains the actual release and tab 3 the former
helm_tab_1_tab_text: 'latest'
helm_tab_2_tab_text: '0.3.0'
helm_tab_3_tab_text: '0.2.0'
helm_tab_3_tab_text: '0.1.0'

# set attributes defining path components which will be assembled in the document
secrets: 'deployment/container/orchestration/orchestration.adoc#define-secrets'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ See the following table to match the Helm chart versions with Infinite Scale rel

// this table needs manual update on the "works" rows when a new Helm chart release is published

[width="65%",cols="~,~",options="header"]
[width="60%",cols="~,~",options="header"]
|===
| Helm Chart Version
| Works with Infinite Scale Versions
Expand All @@ -242,6 +242,8 @@ ifdef::use_helm_tab_3[]
endif::[]
|===

Note that Helm Chart Version `0.2.0` was a necessary intermediate for Infinite Scale `3.0.0-alpha.1` only and is not listed with a working Infinite Scale version therefore.
EParzefall marked this conversation as resolved.
Show resolved Hide resolved

=== Breaking Changes

////
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
= Helm Chart Breaking Changes
:toc: right
:description: Here you will find all breaking changes that come along with different Helm Chart releases. Note that all changes apply when going from one release to another.

////
Note that there is only this one master file for all breaking changes.
Expand All @@ -12,9 +13,30 @@ For each breaking changes block you need:
** Double check the orchestration.adoc file if things need to be adapted (in section breaking changes)
////

== Introduction

{description}

[id=0.3.0]
== Chart Version: 0.3.0

* `services.storageusers.storageBackend.driverConfig.s3ng.secretKey` and +
`services.storageusers.storageBackend.driverConfig.s3ng.accessKey` +
have been deprecated. +
Please set them via the `secretRefs.s3CredentialsSecretRef` secret instead.

* If you had set `services.web.config.disableFeedbackLink` = `true`, you need to replace it by +
`services.web.config.feedbackLink.enabled` = `false`

* In order to persist the instance logo that can be changed via the Web UI, +
`services.web.persistence.enabled` must be set to `false`. +
In prior releases the web frontend did not have any persistence.

[id=0.2.0]
== Chart Version: 0.2.0

Note that Helm Chart Version `0.2.0` was a necessary intermediate for Infinite Scale `3.0.0-alpha.1` only and is listed for completion of breaking changes.

Version 0.2.0 of the Helm Chart introduces some changes compared to version 0.1.0 with respect to the value names which align the service/app names at various places (values file, YAML files, directories).

[width=100%,cols="~,~",options=header]
Expand Down