Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Merge requests
!214
Test Helm chart in CI pipeline
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Test Helm chart in CI pipeline
helm-testing-in-ci
into
master
Overview
3
Commits
19
Pipelines
18
Changes
3
Merged
Test Helm chart in CI pipeline
Sören Henning
requested to merge
helm-testing-in-ci
into
master
Dec 17, 2021
Overview
2
Commits
19
Pipelines
18
Changes
3
Open points:
Basic k3d cluster setup
Move all installation etc. to dedicated builder image
Postponed to later MR:
Use custom builder image (
!283 (merged)
)
Create test for running a simple benchmark (unsure if this should be done via
helm test
as the test pod/job would need a service account etc.), related to
#202 (closed)
(
!285 (merged)
)
Add
need
for
deploy-theodolite
(
#389
)
Edited
Jun 10, 2022
by
Sören Henning
0
0
Merge request reports
Compare
master
version 16
86b94af0
Jun 10, 2022
version 15
17123a8a
Jun 9, 2022
version 14
2e66eb81
Jun 9, 2022
version 13
583793ed
Jan 28, 2022
version 12
190231b5
Jan 28, 2022
version 11
e0ce284d
Dec 17, 2021
version 10
654504d5
Dec 17, 2021
version 9
fb2af200
Dec 17, 2021
version 8
d7451905
Dec 17, 2021
version 7
c9bd35f4
Dec 17, 2021
version 6
4b7f500f
Dec 17, 2021
version 5
445416dd
Dec 17, 2021
version 4
a4581438
Dec 17, 2021
version 3
a01564c6
Dec 17, 2021
version 2
2f08e377
Dec 17, 2021
version 1
dfe202dd
Dec 17, 2021
master (base)
and
version 16
latest version
125dd51f
19 commits,
Jun 10, 2022
version 16
86b94af0
18 commits,
Jun 10, 2022
version 15
17123a8a
16 commits,
Jun 9, 2022
version 14
2e66eb81
15 commits,
Jun 9, 2022
version 13
583793ed
14 commits,
Jan 28, 2022
version 12
190231b5
13 commits,
Jan 28, 2022
version 11
e0ce284d
11 commits,
Dec 17, 2021
version 10
654504d5
10 commits,
Dec 17, 2021
version 9
fb2af200
9 commits,
Dec 17, 2021
version 8
d7451905
8 commits,
Dec 17, 2021
version 7
c9bd35f4
7 commits,
Dec 17, 2021
version 6
4b7f500f
6 commits,
Dec 17, 2021
version 5
445416dd
5 commits,
Dec 17, 2021
version 4
a4581438
4 commits,
Dec 17, 2021
version 3
a01564c6
3 commits,
Dec 17, 2021
version 2
2f08e377
2 commits,
Dec 17, 2021
version 1
dfe202dd
1 commit,
Dec 17, 2021
3 files
+
80
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
buildimages/k3d-helm/Dockerfile
0 → 100644
+
15
−
0
View file @ 86b94af0
Edit in single-file editor
Open in Web IDE
ARG
DOCKER_VERSION=latest
FROM
docker:${DOCKER_VERSION}
ARG
KUBECTL_VERSION=v1.21.3
RUN
apk add
-U
wget bash openssl
# install kubectl
RUN
wget
-q
-O
/usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/
${
KUBECTL_VERSION
}
/bin/linux/amd64/kubectl
&&
\
chmod
+x /usr/local/bin/kubectl
RUN
echo
https://storage.googleapis.com/kubernetes-release/release/
${
KUBECTL_VERSION
}
# install k3d
RUN
wget
-q
-O
- https://raw.githubusercontent.com/rancher/k3d/main/install.sh | bash
# install Helm
RUN
wget
-q
-O
- https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
Loading