This repository has been archived by the owner on Dec 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #342 from hellt/gnmic-image
added gnmic endpoint image
- Loading branch information
Showing
3 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM gnmic/gnmic as source | ||
|
||
FROM antidotelabs/utility | ||
COPY --from=source /app/gnmic /usr/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# SHELL=/bin/bash | ||
|
||
TARGET_VERSION ?= latest | ||
|
||
all: docker | ||
|
||
docker: | ||
docker build --pull --no-cache -t antidotelabs/gnmic:$(TARGET_VERSION) . | ||
docker push antidotelabs/gnmic:$(TARGET_VERSION) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
slug: gnmic | ||
description: gnmic is a gNMI CLI client | ||
flavor: untrusted | ||
sshUser: antidote | ||
sshPassword: antidotepassword | ||
configUser: antidote | ||
configPassword: antidotepassword | ||
networkInterfaces: | ||
- "eth0" |