feat: yaml apps override

This commit is contained in:
devthejo 2023-12-20 21:01:14 +01:00
parent 0aa3cd92df
commit f1bedf0851
Signed by: devthejo
GPG key ID: C04215C627711F5C
9 changed files with 8457 additions and 14 deletions

3
uptag/.gitattributes vendored Normal file
View file

@ -0,0 +1,3 @@
/.yarn/releases/** binary
/.yarn/plugins/** binary
/.pnp.cjs

7
uptag/.gitignore vendored Normal file
View file

@ -0,0 +1,7 @@
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

7453
uptag/.pnp.cjs generated Executable file

File diff suppressed because one or more lines are too long

893
uptag/.yarn/releases/yarn-4.0.2.cjs vendored Executable file

File diff suppressed because one or more lines are too long

1
uptag/.yarnrc.yml Normal file
View file

@ -0,0 +1 @@
yarnPath: .yarn/releases/yarn-4.0.2.cjs

View file

@ -2,7 +2,7 @@ name: Upgrade tag in appsets
description: "Set image tag in values of an application for appsets of an organization"
inputs:
app:
description: "The app directory name (support comma separated list), default to repository name"
description: "The app directory name (support comma separated list or yaml list of objects), default to repository name"
required: false
env:
description: "The env directory name (support comma separated list)"
@ -36,26 +36,16 @@ runs:
CD_KEY: ${{ inputs.key }}
shell: bash
run: |
TAG=${{ inputs.tag }}
export TAG=${{ inputs.tag }}
if [ -z "$TAG" ]; then
IFS=',' read -ra TAGS_ARRAY <<< "${{ inputs.meta-tags }}"
IMAGE=${TAGS_ARRAY[0]}
TAG=${IMAGE##*:}
export TAG=${IMAGE##*:}
fi
echo "Using tag: $TAG"
original_ifs="$IFS"
IFS=','
for app in $CD_APP; do
for env in $CD_ENV; do
values_file="apps/$app/envs/$env/values.yaml"
echo updating values into: "$values_file"
yq e ".$CD_KEY = \"$TAG\"" -i "$values_file"
done
done
IFS="$original_ifs"
yarn node index.js
git config user.name "forgejo-actions"
git config user.email "bot@devthefuture.org"

57
uptag/index.js Normal file
View file

@ -0,0 +1,57 @@
const fs = require("fs/promises");
const yaml = require("yaml");
const set = require("lodash.set");
const yamlLoadAll = (input) => {
const documents = [];
const append = (arr) => {
const doc = arr.join("\n").trim();
if (doc.length > 0) {
const obj = yaml.parse(doc.toString());
if (obj !== null) {
documents.push(obj);
}
}
};
let currentDoc = [];
for (const line of input.split("\n")) {
if (line.startsWith("---")) {
append(currentDoc);
currentDoc = [];
} else {
currentDoc.push(line);
}
}
append(currentDoc);
return documents;
};
const main = async () => {
const defaultTag = process.env.TAG;
const cdApp = process.env.CD_APP;
const cdEnv = process.env.CD_ENV;
const cdKey = process.env.CD_KEY;
let apps;
if (cdApp.includes("\n")) {
apps = yamlLoadAll(cdApp);
} else {
apps = cdApp.split(",").map((name) => ({ name }));
}
const envs = cdEnv.split(",");
for (const app of apps) {
for (const env of envs) {
const { name, key = cdKey, tag = defaultTag } = app;
const valuesFile = `apps/${name}/envs/${env}/values.yaml`;
console.log(`${valuesFile} -> ${key}=${tag}`);
const valuesRaw = await fs.readFile(valuesFile, { encoding: "utf-8" })
const values = yaml.parse(valuesRaw);
set(values, key, tag);
await fs.writeFile(yaml.stringify(values), { encoding: "utf-8" });
}
}
};
main();

10
uptag/package.json Normal file
View file

@ -0,0 +1,10 @@
{
"name": "uptag",
"main": "index.js",
"license": "MIT",
"packageManager": "yarn@4.0.2",
"dependencies": {
"lodash.set": "^4.3.2",
"yaml": "^2.3.4"
}
}

29
uptag/yarn.lock Normal file
View file

@ -0,0 +1,29 @@
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"lodash.set@npm:^4.3.2":
version: 4.3.2
resolution: "lodash.set@npm:4.3.2"
checksum: c641d31905e51df43170dce8a1d11a1cff11356e2e2e75fe2615995408e9687d58c3e1d64c3c284c2df2bc519f79a98af737d2944d382ff82ffd244ff6075c29
languageName: node
linkType: hard
"uptag@workspace:.":
version: 0.0.0-use.local
resolution: "uptag@workspace:."
dependencies:
lodash.set: "npm:^4.3.2"
yaml: "npm:^2.3.4"
languageName: unknown
linkType: soft
"yaml@npm:^2.3.4":
version: 2.3.4
resolution: "yaml@npm:2.3.4"
checksum: cf03b68f8fef5e8516b0f0b54edaf2459f1648317fc6210391cf606d247e678b449382f4bd01f77392538429e306c7cba8ff46ff6b37cac4de9a76aff33bd9e1
languageName: node
linkType: hard