From 8074b5fab88c6553fa7eddc01f82e47b9e39a8bd Mon Sep 17 00:00:00 2001 From: Dima Mishin <dimm@protonmail.ch> Date: Fri, 31 Jul 2020 09:50:34 -0700 Subject: [PATCH] Don't need our own image anymore --- .gitlab-ci.yml | 10 ---------- Dockerfile | 4 ---- values.yaml | 6 +++--- 3 files changed, 3 insertions(+), 17 deletions(-) delete mode 100644 .gitlab-ci.yml delete mode 100644 Dockerfile diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 03eefec..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,10 +0,0 @@ -image: gcr.io/kaniko-project/executor:debug - -stages: - - build-and-push - -build-and-push-job: - stage: build-and-push - script: - - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json - - /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:${CI_COMMIT_SHA:0:8} --destination $CI_REGISTRY_IMAGE:latest diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 74da3e6..0000000 --- a/Dockerfile +++ /dev/null @@ -1,4 +0,0 @@ -FROM netboxcommunity/netbox:v2.8.8 -ENV NAPALM_USERNAME netbox-napalm - -RUN apk add git && pip3 install napalm diff --git a/values.yaml b/values.yaml index bb760db..4a97bb4 100644 --- a/values.yaml +++ b/values.yaml @@ -1,6 +1,6 @@ image: - repository: gitlab-registry.nautilus.optiputer.net/prp/netbox - tag: latest + repository: netboxcommunity/netbox + tag: v2.8.8 resources: limits: @@ -20,4 +20,4 @@ nginx: memory: 128Mi persistence: - storageClass: "rook-block" \ No newline at end of file + storageClass: "rook-block" -- GitLab