Skip to content

Commit

Permalink
chore: typos and wording
Browse files Browse the repository at this point in the history
Got rid of old-fashioned term "service". Replaced it with "deploy".
  • Loading branch information
vvagaytsev committed Sep 20, 2023
1 parent 07d296d commit f4a7c67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/plugins/kubernetes/helm/deployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const helmDeploy: DeployActionHandler<"deploy", HelmDeployAction> = async
await helm({ ctx: k8sCtx, namespace, log, args: [...upgradeArgs], emitLogEvents: true })

// If ctx.cloudApi is defined, the user is logged in and they might be trying to deploy to an environment
// that could have been paused by by Garden Cloud's AEC functionality. We therefore make sure to clean up any
// that could have been paused by Garden Cloud's AEC functionality. We therefore make sure to clean up any
// dangling annotations created by Garden Cloud.
if (ctx.cloudApi) {
try {
Expand All @@ -92,7 +92,7 @@ export const helmDeploy: DeployActionHandler<"deploy", HelmDeployAction> = async
})
)
} catch (error) {
const errorMsg = `Failed to remove Garden Cloud AEC annotations for service: ${action.name}.`
const errorMsg = `Failed to remove Garden Cloud AEC annotations for deploy: ${action.name}.`
log.warn(errorMsg)
log.debug({ error: toGardenError(error) })
}
Expand Down

0 comments on commit f4a7c67

Please sign in to comment.