Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
quant
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
danet
quant
Merge requests
!96
Resolve "Rename kms to goKMS"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Rename kms to goKMS"
9-rename-kms-to-gokms
into
master
Overview
16
Commits
23
Pipelines
26
Changes
92
Merged
Neil-Jocelyn Schark
requested to merge
9-rename-kms-to-gokms
into
master
1 year ago
Overview
16
Commits
23
Pipelines
26
Changes
92
Expand
Description
Related Issue
Motivation and Context
How Has This Been Tested?
Screenshots (if appropriate):
Types of changes
Bug fix (non-breaking change which fixes an issue)
New feature (non-breaking change which adds functionality)
Breaking change (fix or feature that would cause existing functionality to change)
Checklist:
My code follows the code style of this project.
My change requires a change to the documentation.
I have updated the documentation accordingly.
I have read the
CONTRIBUTING
document.
I have added tests to cover my changes.
All new and existing tests passed.
Closes
#9 (closed)
0
0
Merge request reports
Compare
master
version 24
48652e04
1 year ago
version 23
1fb18824
1 year ago
version 22
e1ae3e94
1 year ago
version 21
5dbecff9
1 year ago
version 20
cdc6e426
1 year ago
version 19
62930a22
1 year ago
version 18
18bc12c1
1 year ago
version 17
63fcf087
1 year ago
version 16
306aac9d
1 year ago
version 15
4c47e7ab
1 year ago
version 14
3526f934
1 year ago
version 13
1b1f7553
1 year ago
version 12
97e9e923
1 year ago
version 11
acbfe23b
1 year ago
version 10
cb840f4b
1 year ago
version 9
3168737c
1 year ago
version 8
b84a12a6
1 year ago
version 7
f1b84f89
1 year ago
version 6
97b7895e
1 year ago
version 5
f1c34e57
1 year ago
version 4
fd45567d
1 year ago
version 3
465ad657
1 year ago
version 2
4b005ece
1 year ago
version 1
68b9d0cf
1 year ago
master (base)
and
latest version
latest version
d1984d2c
23 commits,
1 year ago
version 24
48652e04
22 commits,
1 year ago
version 23
1fb18824
21 commits,
1 year ago
version 22
e1ae3e94
20 commits,
1 year ago
version 21
5dbecff9
19 commits,
1 year ago
version 20
cdc6e426
18 commits,
1 year ago
version 19
62930a22
17 commits,
1 year ago
version 18
18bc12c1
16 commits,
1 year ago
version 17
63fcf087
15 commits,
1 year ago
version 16
306aac9d
14 commits,
1 year ago
version 15
4c47e7ab
13 commits,
1 year ago
version 14
3526f934
12 commits,
1 year ago
version 13
1b1f7553
11 commits,
1 year ago
version 12
97e9e923
10 commits,
1 year ago
version 11
acbfe23b
9 commits,
1 year ago
version 10
cb840f4b
8 commits,
1 year ago
version 9
3168737c
9 commits,
1 year ago
version 8
b84a12a6
8 commits,
1 year ago
version 7
f1b84f89
7 commits,
1 year ago
version 6
97b7895e
6 commits,
1 year ago
version 5
f1c34e57
5 commits,
1 year ago
version 4
fd45567d
4 commits,
1 year ago
version 3
465ad657
3 commits,
1 year ago
version 2
4b005ece
2 commits,
1 year ago
version 1
68b9d0cf
1 commit,
1 year ago
92 files
+
364
−
340
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
92
Search (e.g. *.vue) (Ctrl+P)
.devcontainer/Dockerfile
+
6
−
0
Options
# The base container already has entrypoint, vscode user account, etc. out of the box
# The base container already has entrypoint, vscode user account, etc. out of the box
FROM
mcr.microsoft.com/vscode/devcontainers/base:ubuntu-22.04
FROM
mcr.microsoft.com/vscode/devcontainers/base:ubuntu-22.04
# Containerlab version will be set in devcontainer.json
ARG
_CLAB_VERSION
# Set permissions for mounts in devcontainer.json
# Set permissions for mounts in devcontainer.json
RUN
mkdir
-p
/home/vscode/.vscode-server/bin
RUN
mkdir
-p
/home/vscode/.vscode-server/bin
RUN
chown
-R
vscode:vscode /home/vscode/.vscode-server
RUN
chown
-R
vscode:vscode /home/vscode/.vscode-server
@@ -28,6 +31,9 @@ RUN apt-get update \
@@ -28,6 +31,9 @@ RUN apt-get update \
# Install gnmic
# Install gnmic
RUN
bash
-c
"
$(
curl
-sL
https://get-gnmic.openconfig.net
)
"
RUN
bash
-c
"
$(
curl
-sL
https://get-gnmic.openconfig.net
)
"
# Install preferred version of the containerlab
RUN
bash
-c
"
$(
curl
-sL
https://get.containerlab.dev
)
"
--
-v
${
_CLAB_VERSION
}
# Install oh-my-zsh for more terminal features and set is as primary shell
# Install oh-my-zsh for more terminal features and set is as primary shell
ENV
SHELL /bin/zsh
ENV
SHELL /bin/zsh
RUN
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh
-O
- | zsh
||
true
RUN
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh
-O
- | zsh
||
true
Loading