diff --git a/DEPRECATIONS.md b/DEPRECATIONS.md index eec634e59d..afc434f2ef 100644 --- a/DEPRECATIONS.md +++ b/DEPRECATIONS.md @@ -14,6 +14,7 @@ All deprecations are listed below, with the most recent announcements at the top release link: https://github.com/uselagoon/lagoon/releases/tag/v2.18.0 * The standard drupal based tasks that Lagoon ships with (drush ....) have been flagged as deprecated and should not be used anymore. These will need to be replaced with [custom tasks](https://docs.lagoon.sh/using-lagoon-advanced/custom-tasks/). Example replacement tasks will be provided prior to their removal. * This release introduces a deprecation of the `setEnvironmentServices` mutation to updated services for an environment, it is being replaced with `addOrUpdateEnvironmentService` and `deleteEnvironmentService`. This is becaues the type is being refactored to support additional information, and eventually additional functionality. For now, the actions-handler service will still support the older `setEnvironmentServices` for backwards compatability for a short period to allow older versions of `lagoon-remote` to still work, but a new version of `lagoon-remote` will be available that will no longer provides the payload that the actions-handler uses. +* The value for `registry` which was previously required by the `lagoon-core` chart is no longer required. If you are using this, you will need to add it under the new `unauthenticatedRegistry` setting when installing `lagoon-remote` in the `lagoon-build-deploy` section of your values file. If you aren't using an actual registry and have the example `disabled-only-use-harbor-via-deploy-controller.invalid` value, then you do not need to do anything except you can now remove the `registry` setting from your core values file. ### Lagoon v2.17.0 diff --git a/node-packages/commons/src/tasks.ts b/node-packages/commons/src/tasks.ts index d45cabc1de..741a839ffb 100644 --- a/node-packages/commons/src/tasks.ts +++ b/node-packages/commons/src/tasks.ts @@ -117,7 +117,6 @@ const taskMonitorPrefetch = process.env.TASKMONITOR_PREFETCH_COUNT ? Number(proc // * `api` // * `webhooks2tasks` const CI = process.env.CI || "false" -const registry = process.env.REGISTRY || "registry.lagoon.svc:5000" const lagoonGitSafeBranch = process.env.LAGOON_GIT_SAFE_BRANCH || "master" const lagoonVersion = process.env.LAGOON_VERSION const lagoonEnvironmentType = process.env.LAGOON_ENVIRONMENT_TYPE || "development" @@ -662,7 +661,6 @@ export const getControllerBuildData = async function(deployData: any) { deployTarget: deployTargetName, projectSecret: projectSecret, key: sshKeyBase64, - registry: registry, monitoring: { contact: alertContact, statuspageID: uptimeRobotStatusPageId,