mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-25 05:59:26 +08:00
bf768b3109
* Bump the actions group across 1 directory with 7 updates Bumps the actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `1.10.1` | `1.11.1` | | [@octokit/core](https://github.com/octokit/core.js) | `3.6.0` | `6.1.2` | | [@octokit/plugin-retry](https://github.com/octokit/plugin-retry.js) | `3.0.9` | `7.1.2` | | [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.13` | `29.5.14` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.7.4` | `22.8.7` | | [prettier](https://github.com/prettier/prettier) | `2.8.8` | `3.3.3` | | [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.6.3` | Updates `@actions/core` from 1.10.1 to 1.11.1 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Updates `@octokit/core` from 3.6.0 to 6.1.2 - [Release notes](https://github.com/octokit/core.js/releases) - [Commits](https://github.com/octokit/core.js/compare/v3.6.0...v6.1.2) Updates `@octokit/plugin-retry` from 3.0.9 to 7.1.2 - [Release notes](https://github.com/octokit/plugin-retry.js/releases) - [Commits](https://github.com/octokit/plugin-retry.js/compare/v3.0.9...v7.1.2) Updates `@types/jest` from 29.5.13 to 29.5.14 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Updates `@types/node` from 22.7.4 to 22.8.7 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `prettier` from 2.8.8 to 3.3.3 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.3.3) Updates `typescript` from 5.6.2 to 5.6.3 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.6.2...v5.6.3) --- updated-dependencies: - dependency-name: "@actions/core" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: "@octokit/core" dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: "@octokit/plugin-retry" dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: "@types/jest" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: actions - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: actions - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major dependency-group: actions - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> * fixed octokit imports * fix fs imports * prettier * babel config * format * format action update --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Gamero <david340804@gmail.com>
196 lines
5.7 KiB
TypeScript
196 lines
5.7 KiB
TypeScript
import * as core from '@actions/core'
|
|
import {Kubectl} from '../../types/kubectl'
|
|
import * as kubectlUtils from '../../utilities/trafficSplitUtils'
|
|
import {
|
|
deleteObjects,
|
|
deployObjects,
|
|
fetchResource,
|
|
getBlueGreenResourceName,
|
|
getNewBlueGreenObject,
|
|
GREEN_LABEL_VALUE,
|
|
GREEN_SUFFIX,
|
|
NONE_LABEL_VALUE,
|
|
STABLE_SUFFIX
|
|
} from './blueGreenHelper'
|
|
import {BlueGreenDeployment} from '../../types/blueGreenTypes'
|
|
import {
|
|
K8sDeleteObject,
|
|
K8sObject,
|
|
TrafficSplitObject
|
|
} from '../../types/k8sObject'
|
|
import {DeployResult} from '../../types/deployResult'
|
|
import {inputAnnotations} from '../../inputUtils'
|
|
|
|
export const TRAFFIC_SPLIT_OBJECT_NAME_SUFFIX = '-trafficsplit'
|
|
export const TRAFFIC_SPLIT_OBJECT = 'TrafficSplit'
|
|
export const MIN_VAL = 0
|
|
export const MAX_VAL = 100
|
|
|
|
export async function setupSMI(
|
|
kubectl: Kubectl,
|
|
serviceEntityList: any[]
|
|
): Promise<BlueGreenDeployment> {
|
|
const newObjectsList = []
|
|
const trafficObjectList = []
|
|
|
|
serviceEntityList.forEach((serviceObject) => {
|
|
// create a trafficsplit for service
|
|
trafficObjectList.push(serviceObject)
|
|
// set up the services for trafficsplit
|
|
const newStableService = getStableSMIServiceResource(serviceObject)
|
|
const newGreenService = getGreenSMIServiceResource(serviceObject)
|
|
newObjectsList.push(newStableService)
|
|
newObjectsList.push(newGreenService)
|
|
})
|
|
|
|
const tsObjects: TrafficSplitObject[] = []
|
|
// route to stable service
|
|
for (const svc of trafficObjectList) {
|
|
const tsObject = await createTrafficSplitObject(
|
|
kubectl,
|
|
svc.metadata.name,
|
|
NONE_LABEL_VALUE
|
|
)
|
|
tsObjects.push(tsObject as TrafficSplitObject)
|
|
}
|
|
|
|
const objectsToDeploy = [].concat(newObjectsList, tsObjects)
|
|
|
|
// create services
|
|
const smiDeploymentResult: DeployResult = await deployObjects(
|
|
kubectl,
|
|
objectsToDeploy
|
|
)
|
|
|
|
return {
|
|
objects: objectsToDeploy,
|
|
deployResult: smiDeploymentResult
|
|
}
|
|
}
|
|
|
|
let trafficSplitAPIVersion = ''
|
|
|
|
export async function createTrafficSplitObject(
|
|
kubectl: Kubectl,
|
|
name: string,
|
|
nextLabel: string
|
|
): Promise<TrafficSplitObject> {
|
|
// cache traffic split api version
|
|
if (!trafficSplitAPIVersion)
|
|
trafficSplitAPIVersion =
|
|
await kubectlUtils.getTrafficSplitAPIVersion(kubectl)
|
|
|
|
// retrieve annotations for TS object
|
|
const annotations = inputAnnotations
|
|
|
|
// decide weights based on nextlabel
|
|
const stableWeight: number =
|
|
nextLabel === GREEN_LABEL_VALUE ? MIN_VAL : MAX_VAL
|
|
const greenWeight: number =
|
|
nextLabel === GREEN_LABEL_VALUE ? MAX_VAL : MIN_VAL
|
|
|
|
const trafficSplitObject: TrafficSplitObject = {
|
|
apiVersion: trafficSplitAPIVersion,
|
|
kind: TRAFFIC_SPLIT_OBJECT,
|
|
metadata: {
|
|
name: getBlueGreenResourceName(name, TRAFFIC_SPLIT_OBJECT_NAME_SUFFIX),
|
|
annotations: annotations,
|
|
labels: new Map<string, string>()
|
|
},
|
|
spec: {
|
|
service: name,
|
|
backends: [
|
|
{
|
|
service: getBlueGreenResourceName(name, STABLE_SUFFIX),
|
|
weight: stableWeight
|
|
},
|
|
{
|
|
service: getBlueGreenResourceName(name, GREEN_SUFFIX),
|
|
weight: greenWeight
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
return trafficSplitObject
|
|
}
|
|
|
|
export function getStableSMIServiceResource(inputObject: K8sObject): K8sObject {
|
|
const newObject = JSON.parse(JSON.stringify(inputObject))
|
|
// adding stable suffix to service name
|
|
newObject.metadata.name = getBlueGreenResourceName(
|
|
inputObject.metadata.name,
|
|
STABLE_SUFFIX
|
|
)
|
|
return getNewBlueGreenObject(newObject, NONE_LABEL_VALUE)
|
|
}
|
|
|
|
export function getGreenSMIServiceResource(inputObject: K8sObject): K8sObject {
|
|
const newObject = JSON.parse(JSON.stringify(inputObject))
|
|
return getNewBlueGreenObject(newObject, GREEN_LABEL_VALUE)
|
|
}
|
|
|
|
export async function validateTrafficSplitsState(
|
|
kubectl: Kubectl,
|
|
serviceEntityList: any[]
|
|
): Promise<boolean> {
|
|
let trafficSplitsInRightState: boolean = true
|
|
|
|
for (const serviceObject of serviceEntityList) {
|
|
const name = serviceObject.metadata.name
|
|
let trafficSplitObject = await fetchResource(
|
|
kubectl,
|
|
TRAFFIC_SPLIT_OBJECT,
|
|
getBlueGreenResourceName(name, TRAFFIC_SPLIT_OBJECT_NAME_SUFFIX),
|
|
serviceObject?.metadata?.namespace
|
|
)
|
|
core.debug(
|
|
`ts object extracted was ${JSON.stringify(trafficSplitObject)}`
|
|
)
|
|
if (!trafficSplitObject) {
|
|
core.debug(`no traffic split exits for ${name}`)
|
|
trafficSplitsInRightState = false
|
|
continue
|
|
}
|
|
|
|
trafficSplitObject.spec.backends.forEach((element) => {
|
|
// checking if trafficsplit in right state to deploy
|
|
if (element.service === getBlueGreenResourceName(name, GREEN_SUFFIX)) {
|
|
trafficSplitsInRightState =
|
|
trafficSplitsInRightState && element.weight == MAX_VAL
|
|
}
|
|
|
|
if (
|
|
element.service === getBlueGreenResourceName(name, STABLE_SUFFIX)
|
|
) {
|
|
trafficSplitsInRightState =
|
|
trafficSplitsInRightState && element.weight == MIN_VAL
|
|
}
|
|
})
|
|
}
|
|
return trafficSplitsInRightState
|
|
}
|
|
|
|
export async function cleanupSMI(
|
|
kubectl: Kubectl,
|
|
serviceEntityList: any[]
|
|
): Promise<K8sDeleteObject[]> {
|
|
const deleteList: K8sDeleteObject[] = []
|
|
|
|
serviceEntityList.forEach((serviceObject) => {
|
|
deleteList.push({
|
|
name: getBlueGreenResourceName(
|
|
serviceObject.metadata.name,
|
|
GREEN_SUFFIX
|
|
),
|
|
kind: serviceObject.kind,
|
|
namespace: serviceObject?.metadata?.namespace
|
|
})
|
|
})
|
|
|
|
// delete all objects
|
|
await deleteObjects(kubectl, deleteList)
|
|
|
|
return deleteList
|
|
}
|