Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create invalid_dashboard.json #303

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions .github/scripts/js/ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ const setCRIAndVersionsFromLabels = ({ core, labels }) => {
}
if (cri.length === 0) {
const defaultCRI = e2eDefaults.criName.toLowerCase();
core.info(`No 'e2e/use/cri' labels found. Will run e2e with default cri=${defaultCRI}.`);
core.info(`Will run e2e with default cri=${defaultCRI}.`);
cri = [defaultCRI];
}
core.endGroup();
Expand Down Expand Up @@ -639,8 +639,6 @@ const parseCommandArgumentAsRef = (cmdArg) => {
* /build release-1.30
* /e2e/run/aws v1.31.0-alpha.0
* /e2e/use/k8s/1.22
* /e2e/use/cri/docker
* /e2e/use/cri/containerd
* /deploy/web/stage v1.3.2
* /deploy/alpha - to deploy all editions
* /deploy/alpha/ce,ee,fe
Expand Down Expand Up @@ -1186,8 +1184,6 @@ You can trigger release related actions by commenting on this issue:
- \`provider\` is one of \`${availableProviders}\`
- \`git_ref_1\` is a release-* or main branch
- \`git_ref_2\` is a release-* or main branch
- \`/e2e/use/cri/<cri_name>\` specifies which CRI to use for e2e test.
- \`cri_name\` is one of \`${availableCRI}\`
- \`/e2e/use/k8s/<version>\` specifies which Kubernetes version to use for e2e test.
- \`version\` is one of \`${availableKubernetesVersions}\`
- \`/build git_ref\` will run build for release related refs.
Expand All @@ -1200,18 +1196,15 @@ Put \`/e2e/use\` options below \`/e2e/run\` command to set specific CRI and Kube

\`\`\`
/e2e/run/aws main
/e2e/use/cri/docker
/e2e/use/cri/containerd
/e2e/use/k8s/1.20
/e2e/use/k8s/1.23

This comment will run 4 e2e jobs on AWS with Docker and containerd
This comment will run 2 e2e jobs on AWS with containerd
and with Kubernetes version 1.20 and 1.23 using image built from main branch.
\`\`\`

\`\`\`
/e2e/run/aws release-1.35 release-1.36
/e2e/use/cri/containerd
/e2e/use/k8s/1.23

This comment will create cluster in AWS using Deckhouse built from release-1.35 branch
Expand Down
4 changes: 0 additions & 4 deletions .github/scripts/js/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ const labels = {
'e2e/run/yandex-cloud': { type: 'e2e-run', provider: 'yandex-cloud' },
'e2e/run/static': { type: 'e2e-run', provider: 'static' },

// E2E: use CRI
'e2e/use/cri/docker': { type: 'e2e-use', cri: 'Docker' },
'e2e/use/cri/containerd': { type: 'e2e-use', cri: 'Containerd' },

// E2E: use Kubernetes version
'e2e/use/k8s/1.25': { type: 'e2e-use', ver: '1.25' },
'e2e/use/k8s/1.26': { type: 'e2e-use', ver: '1.26' },
Expand Down
1 change: 0 additions & 1 deletion .github/scripts/js/specs/constants.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ test('knownProviders', () => {

test('knownCRINames', () => {
expect(knownCRINames).toContain('Containerd')
expect(knownCRINames).toContain('Docker')
})

test('knownKubernetesVersions', () => {
Expand Down
Loading
Loading