v2.27.6 Armory Continuous Deployment Release (Spinnaker™ v1.27.3)

Release notes for Armory Continuous Deployment v2.27.6

2023/01/30 Release Notes

Note: If you’re experiencing production issues after upgrading Spinnaker, rollback to a previous working version and please report issues to http://go.armory.io/support.

Required Armory Operator version

To install, upgrade, or configure Armory 2.27.6, use Armory Operator 1.70 or later.

Security

Armory scans the codebase as we develop and release software. Contact your Armory account representative for information about CVE scans for this release.

Breaking changes

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.

Kubernetes version for deployment targets

Armory CD 2.26 no longer supports Kubernetes deployment targets prior to version 1.16.

Impact

Any Kubernetes deployment target must run version 1.16 or higher. If you try to deploy to clusters older than 1.16, you may see errors like the following in the UI:

The UI shows an Unexpected Task Failure error.

Additionally, errors like the following appear in the Clouddriver logs:

2021-05-04 21:17:16.032 WARN 1 --- [0.0-7002-exec-9] c.n.s.c.k.c.ManifestController : Failed to read manifest

com.netflix.spinnaker.clouddriver.kubernetes.op.handler.UnsupportedVersionException: No replicaSet is supported at api version extensions/v1beta1
at com.netflix.spinnaker.clouddriver.kubernetes.op.handler.KubernetesReplicaSetHandler.status(KubernetesReplicaSetHandler.java:98) ~[clouddriver-kubernetes.jar:na]
2021-05-05 14:29:09.653 WARN 1 --- [utionAction-538] c.n.s.c.k.c.a.KubernetesCachingAgent : kubernetes/KubernetesCoreCachingAgent[1/1]: Failure adding relationships for service

com.netflix.spinnaker.clouddriver.kubernetes.op.handler.UnsupportedVersionException: No replicaSet is supported at api version extensions/v1beta1
at com.netflix.spinnaker.clouddriver.kubernetes.op.handler.KubernetesReplicaSetHandler.getPodTemplateLabels(KubernetesReplicaSetHandler.java:167)

Workaround

If you are affected by this change, perform the following tasks to update your applications:

  • Upgrade the Kubernetes clusters that you are trying to deploy to. They must run version 1.16 or higher.
  • If you have manifest files using deprecated APIs, update them to use newer APIs. For more information on which APIs are deprecated in each Kubernetes version and how to migrate, see the Kubernetes Deprecated API Migration Guide.

Introduced in: Armory CD 2.26.0

Kubernetes infrastructure in the UI

Starting in 2.26, the UI has been updated to more closely follow immutable infrastructure principles.

When you navigate to the Infrastructure tab in the UI for an application that has the Kubernetes provider configured, actions that change the Kubernetes infrastructure (such as Create or Delete), including Clusters, Load Balancers, and Firewalls, are no longer available.

Impact

Users do not see these actions in the UI by default. You must configure the UI to display them if you want your users to be able to perform them through the UI.

Workaround

Whether or not these actions are available in the UI is controlled by the following property in settings-local.yml:

window.spinnakerSettings.kubernetesAdHocInfraWritesEnabled = <boolean>;

This setting does not completely prevent users from modifying Kubernetes infrastructure through Armory CD. To do so, you must use the Policy Engine and write policies using the spinnaker.http.authz package.

If you use the Policy Engine to control which user roles can see the UI actions and be able to use them, you must set this property to true. Setting the value to false hides the buttons for all users regardless of whether you grant specific users access to the buttons through the Policy Engine.

This property affects Kubernetes infrastructure only. The behavior is slightly different depending on if the application has only the Kubernetes provider configured or Kubernetes and other providers, such as AWS.

If the application only has the Kubernetes provider configured, the following applies:

  • When set to true, this property causes the UI to function as it did in previous releases. This allows people to manually create and delete Kubernetes infrastructure from the UI.
  • When set to false, this property causes the actions to be unavailable to users. This prevents users from manually creating and deleting Kubernetes infrastructure from the UI. The users can still view the infrastructure but cannot make changes through the UI.

If the application includes Kubernetes and other providers, the following applies:

  • When set to true, this property causes the UI to function as it did in previous releases. This allows people to manually create and delete Kubernetes infrastructure from the UI. Users can continue to select whether they want to create Kubernetes or other infrastructure in the UI.
  • When set to false, this property causes Kubernetes to be unavailable as an option when trying to modify infrastructure from the UI. Users can still make changes to infrastructure for the application from cloud providers, such as AWS, but not Kubernetes.

Introduced in: Armory CD 2.26.0

Halyard deprecation

Halyard is no longer supported for installing Armory Continuous Deployment 2.27.0 and later. Use the Operator. For more information, see Halyard Deprecation.

Due to changes in the underlying services, older versions of some plugins may not work with Armory Continuous Deployment 2.27.x or later.

The following table lists the plugins and their required minimum version:

PluginVersion
Armory Agent for Kubernetes Clouddriver Plugin0.10.0
App Name0.2.0
AWS Lambda1.0.9
Evaluate Artifacts0.1.1
External Accounts0.2.0
Observability Plugin1.3.1
Policy Engine0.2.1-rc

Known issues

SpEL expressions and artifact binding

There is an issue where it appears that SpEL expressions are not being evaluated properly in artifact declarations (such as container images) for events such as the Deploy Manifest stage. What is actually happening is that an artifact binding is overriding the image value.

Workaround:

2.27.x or later: Disable artifact binding by adding the following parameter to the stage JSON: enableArtifactBinding: false.

2.26.x or later: Change the artifact binding behavior in spec.spinnakerConfig.profiles.clouddriver (Operator) or clouddriver-local.yml (Halyard) to the following, which causes artifacts to only bind the version when the tag is missing:

kubernetes:
  artifact-binding:
    docker-image: match-name-only

This setting only binds the version when the tag is missing, such as image: nginx without a version number.

Affected versions: 2.26.x and later

Pipelines-as-Code GitHub comments

There is a known issue where Pipelines-as-Code can generate hundreds of comments in a GitHub Pull Request (PR) when updates are made, such as when a module that is used by multiple dinghyfiles gets changed. These comments may prevent the GitHub UI from loading or related API calls may lead to rate limiting.

Affected versions: 2.26.x and later

Workaround:

You can either manually resolve the comments so that you can merge any PRs or turn the notifications that Pipelines-as-Code sends to GitHub.

For information about about how to disable this functionality, see GitHub Notifications.

Secrets do not work with Spring Cloud Config

If you enable Spring Cloud Config all the properties (e.g. Docker) using Secrets are not resolved when Spring Cloud tries to refresh.

Affected versions:

  • 2.26.x and later

Known Affected providers in Clouddriver:

  • Kubernetes
  • Cloudfoundry
  • Docker

Workaround:

Do not use secrets for properties that are annotated with @RefreshScope.

Pipelines-as-Code GitHub comments

There is a known issue where Pipelines-as-Code can generate hundreds of comments in a GitHub Pull Request (PR) when updates are made, such as when a module that is used by multiple dinghyfiles gets changed. These comments may prevent the GitHub UI from loading or related API calls may lead to rate limiting.

Affected versions: Armory CD 2.26.x and later

Workaround:

You can either manually resolve the comments so that you can merge any PRs or turn the notifications that Pipelines-as-Code sends to GitHub.

For information about about how to disable this functionality, see GitHub Notifications.

Early Access features

Pipelines-as-Code multi-branch enhancement

Now you can configure Pipelines-as-Code to pull Dinghy files from multiple branches in the same repo. Cut out the tedious task of managing multiple repos; have a single repo for Spinnaker application pipelines. See Multiple branches for how to enable and configure this feature.

Feature flag in Orca to use the new Igor stop endpoint

When defining a Jenkins job inside folders, the name contains slashes. Because of that, instead of matching the request to the IGOR STOP endpoint (/masters/{name}/jobs/{jobName}/stop/{queuedBuild}/{buildNumber}), Spring is matching the request to the BUILD one (/masters/{name}/jobs/**) The stop request is failing because it is trying to start a job that does not exist. A feature flag was added to call the existing endpoint (which accepts the job name as path variable) or the new one (which accepts the job name as a query parameter).

Fixes

  • Updated google cloud SDK to support GKE >1.26
  • Bumped commons-text to address CVE-2022-42889
  • Add migration to ensure consistency between resource_name in fiat_resource and fiat_permission tables

Spinnaker Community Contributions

There have also been numerous enhancements, fixes, and features across all of Spinnaker’s other services. See the Spinnaker v1.27.3 changelog for details.

Detailed updates

Bill Of Materials (BOM)

Here’s the BOM for this version.

Expand
artifactSources:
  dockerRegistry: docker.io/armory
dependencies:
  redis:
    commit: null
    version: 2:2.8.4-2
services:
  clouddriver:
    commit: 60eafebf9875071709e3d8ec53d2729a197574f1
    version: 2.27.6
  deck:
    commit: 0802cbb92aa32eb6b387b5a6e54db14843fc6f31
    version: 2.27.6
  dinghy:
    commit: ca161395d61ae5e93d1f9ecfbb503b68c2b54bc5
    version: 2.27.6
  echo:
    commit: 3204f90e951562245c62430d863617c34b3a0826
    version: 2.27.6
  fiat:
    commit: b3ca6748d2377454949420613e7912748ea00b52
    version: 2.27.6
  front50:
    commit: 5e1fe36c4b8df29cc9cb4d7af581a44b0ca44e59
    version: 2.27.6
  gate:
    commit: adf9732bc7b3c8df48b21b86ef9783efcadec78b
    version: 2.27.6
  igor:
    commit: 9e2d7946da19c803eb0bd12e888c5119528a364c
    version: 2.27.6
  kayenta:
    commit: 5a1efcefddfe78f37550f5bee723570e3737ce04
    version: 2.27.6
  monitoring-daemon:
    commit: null
    version: 2.26.0
  monitoring-third-party:
    commit: null
    version: 2.26.0
  orca:
    commit: fa3449f0202512534382d2d2a0431f25f4f408c5
    version: 2.27.6
  rosco:
    commit: f4164fdcfa275b62e0c0fefbe26b5cbd845c543d
    version: 2.27.6
  terraformer:
    commit: f845ba2fc760c46b98794a10c32cc2b713c7c9e0
    version: 2.27.6
timestamp: "2023-01-20 20:04:33"
version: 2.27.6

Armory

Armory Kayenta - 2.27.5…2.27.6

  • fix(kayenta-integration-tests): update dynatrace tenant to qso00828 (backport #376) (#378)
  • chore(cd): update base service version to kayenta:2022.12.01.22.29.56.release-1.27.x (#373)

Armory Orca - 2.27.5…2.27.6

Terraformer™ - 2.27.5…2.27.6

  • fix(versions): Sets version constraints for kubectl & aws-iam-authent… (backport #487) (#488)
  • Fixes builds with golint being dead until were on a newer golang (#491) (#494)
  • feat(gcloud): Bump to latest gcloud sdk & adds the GKE Auth plugin (#490) (#492)

Armory Rosco - 2.27.5…2.27.6

Armory Deck - 2.27.5…2.27.6

  • style(logo): Changed Armory logo (#1264) (#1266)

Armory Clouddriver - 2.27.5…2.27.6

  • feat(google): Updated google cloud SDK to support GKE >1.26 (#769) (#771)
  • chore(cd): update base service version to clouddriver:2023.01.20.18.19.32.release-1.27.x (#781)

Armory Fiat - 2.27.5…2.27.6

  • chore(cd): update base service version to fiat:2022.11.18.19.29.05.release-1.27.x (#408)

Armory Gate - 2.27.5…2.27.6

Armory Echo - 2.27.5…2.27.6

  • chore(cd): update base service version to echo:2022.12.14.15.47.16.release-1.27.x (#515)
  • chore(cd): update base service version to echo:2023.01.20.14.47.33.release-1.27.x (#525)

Armory Front50 - 2.27.5…2.27.6

  • chore(cd): update base service version to front50:2022.12.01.21.15.09.release-1.27.x (#473)

Armory Igor - 2.27.5…2.27.6

Dinghy™ - 2.27.5…2.27.6

Spinnaker

Spinnaker Kayenta - 1.27.3

  • fix(security): Bump commons-text for CVE-2022-42889 (#911) (#913)
  • chore(dependencies): Autobump orcaVersion (#918)
  • chore(dependencies): Autobump orcaVersion (#919)
  • chore(dependencies): Autobump spinnakerGradleVersion (#917) (#920)

Spinnaker Orca - 1.27.3

Spinnaker Rosco - 1.27.3

Spinnaker Deck - 1.27.3

Spinnaker Clouddriver - 1.27.3

  • chore(dependencies): pin version of com.github.tomakehurst:wiremock (#5845) (#5857)

Spinnaker Fiat - 1.27.3

  • fix(permissions): ensure lower case for resource name in fiat_permission and fiat_resource tables (backport #963) (#979)
  • chore(build): set timeout for apt publishing to 5 minutes (#987)
  • chore(build): set timeout for apt publishing to 10 minutes and add –stacktrace (#988)
  • chore(dependencies): Autobump spinnakerGradleVersion (#989) (#990)
  • Cleanup publish debugging (#991)

Spinnaker Gate - 1.27.3

Spinnaker Echo - 1.27.3

  • feat(event): Add circuit breaker for events sending. (#1233) (#1238)
  • fix: The circuit breaker feature for sending events to telemetry endpoint is hidden under a required feature flag property (#1241) (#1244)

Spinnaker Front50 - 1.27.3

  • chore(dependencies): Autobump fiatVersion (#1178)
  • fix(pipelines): prevent from creating duplicated pipelines (#1172) (#1173)
  • chore(dependencies): Autobump spinnakerGradleVersion (#1177) (#1182)
  • chore(gha): bump versions of github actions (#1185)

Spinnaker Igor - 1.27.3


Last modified December 6, 2023: (a0529dfe)