Skip to content

Commit

Permalink
Updating release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
christosarvanitis committed Feb 9, 2024
1 parent 7c6d769 commit 421e89f
Showing 1 changed file with 57 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ You acknowledge that Armory has provided the Services in reliance upon the limit

## Required Armory Operator version

Check warning on line 32 in content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md#L32

[Google.Headings] 'Required Armory Operator version' should use sentence-style capitalization.
Raw output
{"message": "[Google.Headings] 'Required Armory Operator version' should use sentence-style capitalization.", "location": {"path": "content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md", "range": {"start": {"line": 32, "column": 4}}}, "severity": "WARNING"}

To install, upgrade, or configure Armory CD 2.32.0-rc4, use Armory Operator 1.70 or later.
To install, upgrade, or configure Armory CD 2.32.0-rc4, use Armory Operator 1.7.3 or later.

## Security

Expand All @@ -41,6 +41,62 @@ Armory scans the codebase as we develop and release software. Contact your Armor
<!-- Copy/paste from the previous version if there are recent ones. We can drop breaking changes after 3 minor versions. Add new ones from OSS and Armory. -->

> Breaking changes are kept in this list for 3 minor versions from when the change is introduced. For example, a breaking change introduced in 2.21.0 appears in the list up to and including the 2.24.x releases. It would not appear on 2.25.x release notes.
### AWS Lambda plugin migrated to OSS

Check warning on line 44 in content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md#L44

[Google.Headings] 'AWS Lambda plugin migrated to OSS' should use sentence-style capitalization.
Raw output
{"message": "[Google.Headings] 'AWS Lambda plugin migrated to OSS' should use sentence-style capitalization.", "location": {"path": "content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md", "range": {"start": {"line": 44, "column": 5}}}, "severity": "WARNING"}
Starting from Armory version 2.32.0 (OSS version 1.32.0), the AWS Lambda plugin has been migrated to OSS codebase.
If you are using the AWS Lambda plugin, you will need to disable/remove it when upgrading to Armory version 2.32.0+ to

Check warning on line 46 in content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md#L46

[Google.Will] Avoid using ' will '.
Raw output
{"message": "[Google.Will] Avoid using ' will '.", "location": {"path": "content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md", "range": {"start": {"line": 46, "column": 44}}}, "severity": "WARNING"}
avoid compatibility issues.

Additionally, the AWS Lambda stages are now enabled using the Deck feature flag `feature.lambdaAdditionalStages = true;`
as shown in the configuration block below.
{{< highlight yaml "linenos=table,hl_lines=12" >}}
apiVersion: spinnaker.armory.io/v1alpha2
kind: SpinnakerService
metadata:
name: spinnaker
spec:
spinnakerConfig:
profiles:
deck:
settings-local.js: |
...
window.spinnakerSettings.feature.functions = true;
// Enable the AWS Lambda pipeline stages in Deck using the feature flag
window.spinnakerSettings.feature.lambdaAdditionalStages = true;
...
clouddriver:
aws:
enabled: true
features:
lambda:
enabled: true
## Remove the AWS Lambda plugin from the Armory CD configuration.
#gate:
# spinnaker:
# extensibility:
# deck-proxy:
# enabled: true
# plugins:
# Aws.LambdaDeploymentPlugin:
# enabled: true
# version: <version>
# repositories:
# awsLambdaDeploymentPluginRepo:
# url: https://raw.githubusercontent.com/spinnaker-plugins/aws-lambda-deployment-plugin-spinnaker/master/plugins.json
#orca:
# spinnaker:
# extensibility:
# plugins:
# Aws.LambdaDeploymentPlugin:
# enabled: true
# version: <version>
# extensions:
# Aws.LambdaDeploymentStage:
# enabled: true
# repositories:
# awsLambdaDeploymentPluginRepo:
# id: awsLambdaDeploymentPluginRepo
# url: https://raw.githubusercontent.com/spinnaker-plugins/aws-lambda-deployment-plugin-spinnaker/master/plugins.json
{{< /highlight >}}

## 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. -->
Expand Down

0 comments on commit 421e89f

Please sign in to comment.