Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
27 changes: 9 additions & 18 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,6 @@ languageName ="English"
# Weight used for sorting.
weight = 1

[[menu.main]]
name = "CD-as-a-Service"
weight = 2
url = "https://developer.armory.io/"

[[menu.main]]
name = "Armory CD"
weight = 3
Expand Down Expand Up @@ -179,7 +174,7 @@ weight = 1
[params]
# See codenew shortcode
deploy-engine-plugin-version = "0.16.8"
armory-version = "2.34.x"
armory-version = "2.36.x"
#used in air-gapped
matching-oss-version-exact = "1.27.0"
# used in agent compat and system requirements
Expand All @@ -204,7 +199,7 @@ terms_and_conditions = "https://www.armory.io/terms-and-conditions/"

# Menu title if your navbar has a versions selector to access old versions of your site.
# This menu appears only if you have at least one [params.versions] set.
version_menu = "Armory CD v2.34"
version_menu = "Armory CD v2.36"

# Flag used in the "version-banner" partial to decide whether to display a
# banner on every page indicating that this is an archived version of the docs.
Expand All @@ -215,7 +210,7 @@ archived_version = false
# Used in the "version-banner" partial to display a version number for the
# current doc set.
# Also used in the PCM to highlight what version the PCM is for
version = "2.34.x"
version = "2.36.x"

# A link to latest version of the Armory CD docs. Used in the "version-banner" partial to
# point people to the main Armory CD docs site.
Expand Down Expand Up @@ -336,17 +331,13 @@ theme = "forest"
# at the top of the website.

[[params.versions]]
version = "Armory CD v2.31"
githubbranch = "v2.31"
url = "https://v2-31.docs.armory.io/continuous-deployment/"
version = "Armory CD v2.34"
githubbranch = "v2.34"
url = "https://v2-34.docs.armory.io/continuous-deployment/"

[[params.versions]]
version = "Armory CD v2.30"
githubbranch = "v2.30"
url = "https://v2-30.docs.armory.io/continuous-deployment/"
version = "Armory CD v2.32"
githubbranch = "v2.32"
url = "https://v2-32.docs.armory.io/continuous-deployment/"

[[params.versions]]
version = "Armory CD v2.28"
githubbranch = "v2.28"
url = "https://v2-28.docs.armory.io/continuous-deployment/"

Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,24 @@
## Known issues
<!-- Copy/paste known issues from the previous version if they're not fixed. Add new ones from OSS and Armory. If there aren't any issues, state that so readers don't think we forgot to fill out this section. -->

### Echo Filter enabled pipelines feature
Spinnaker OSS Version 1.31.0 introduced a feature to filter pipelines from front50 , that was disabled by default.

Check warning on line 61 in content/en/continuous-deployment/release-notes/rn-armory-spinnaker/armoryspinnaker_v2-36-1.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/en/continuous-deployment/release-notes/rn-armory-spinnaker/armoryspinnaker_v2-36-1.md#L61

[Google.WordList] Use 'turn off' or 'off' instead of 'disabled'.
Raw output
{"message": "[Google.WordList] Use 'turn off' or 'off' instead of 'disabled'.", "location": {"path": "content/en/continuous-deployment/release-notes/rn-armory-spinnaker/armoryspinnaker_v2-36-1.md", "range": {"start": {"line": 61, "column": 95}}}, "severity": "WARNING"}
Version 1.35.0 enabled it by default , which is not recommended and can cause issues with automated triggers.
In Armory CD 2.36.2 we recommend to explicitly disable this feature by setting the following configuration:

Check warning on line 63 in content/en/continuous-deployment/release-notes/rn-armory-spinnaker/armoryspinnaker_v2-36-1.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/en/continuous-deployment/release-notes/rn-armory-spinnaker/armoryspinnaker_v2-36-1.md#L63

[Google.We] Try to avoid using first-person plural like ' we '.
Raw output
{"message": "[Google.We] Try to avoid using first-person plural like ' we '.", "location": {"path": "content/en/continuous-deployment/release-notes/rn-armory-spinnaker/armoryspinnaker_v2-36-1.md", "range": {"start": {"line": 63, "column": 20}}}, "severity": "WARNING"}

Check warning on line 63 in content/en/continuous-deployment/release-notes/rn-armory-spinnaker/armoryspinnaker_v2-36-1.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/en/continuous-deployment/release-notes/rn-armory-spinnaker/armoryspinnaker_v2-36-1.md#L63

[Google.WordList] Use 'turn off' or 'off' instead of 'disable'.
Raw output
{"message": "[Google.WordList] Use 'turn off' or 'off' instead of 'disable'.", "location": {"path": "content/en/continuous-deployment/release-notes/rn-armory-spinnaker/armoryspinnaker_v2-36-1.md", "range": {"start": {"line": 63, "column": 48}}}, "severity": "WARNING"}

```
apiVersion: spinnaker.armory.io/v1alpha2
kind: SpinnakerService
metadata:
name: spinnaker
spec:
spinnakerConfig:
profiles:
echo:
pipelineCache:
filterFront50Pipelines: false
```

## Highlighted updates

### Java upgrades
Expand Down
Loading