Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit 6442b82

Browse files
committed
Initial commit
Signed-off-by: Tamal Saha <[email protected]>
0 parents  commit 6442b82

File tree

1,086 files changed

+411139
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,086 files changed

+411139
-0
lines changed

.github/.kodiak.toml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version = 1
2+
3+
[merge]
4+
method = "squash" # default: "merge"
5+
delete_branch_on_merge = true # default: false
6+
optimistic_updates = true # default: true
7+
prioritize_ready_to_merge = true # default: false
8+
9+
[merge.message]
10+
title = "pull_request_title" # default: "github_default"
11+
body = "github_default" # default: "github_default"
12+
strip_html_comments = true # default: false
13+
14+
[update]
15+
always = true # default: false
16+
17+
[approve]
18+
auto_approve_usernames = ["1gtm", "tamalsaha"]

.github/workflows/ci.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- "*"
7+
push:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
name: Build
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Set up Go 1.16
17+
uses: actions/setup-go@v1
18+
with:
19+
go-version: 1.16
20+
id: go
21+
22+
- uses: actions/checkout@v1
23+
24+
- name: Set up QEMU
25+
id: qemu
26+
uses: docker/setup-qemu-action@v1
27+
28+
- name: Set up Docker Buildx
29+
uses: docker/setup-buildx-action@v1
30+
31+
- name: Prepare Host
32+
run: |
33+
sudo apt-get -qq update || true
34+
sudo apt-get install -y bzr
35+
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.21.1/bin/linux/amd64/kubectl
36+
chmod +x ./kubectl
37+
sudo mv ./kubectl /usr/local/bin/kubectl
38+
39+
- name: Run checks
40+
run: |
41+
make ci

.github/workflows/release-tracker.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: release-tracker
2+
3+
on:
4+
pull_request:
5+
types: [closed]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v1
13+
14+
- name: Prepare git
15+
env:
16+
GITHUB_USER: 1gtm
17+
GITHUB_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }}
18+
run: |
19+
git config --global user.name "${GITHUB_USER}"
20+
git config --global user.email "${GITHUB_USER}@appscode.com"
21+
git remote set-url origin https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
22+
23+
- name: Install GitHub CLI
24+
run: |
25+
curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.1
26+
sudo mv bin/hub /usr/local/bin
27+
28+
- name: Update release tracker
29+
if: |
30+
github.event.action == 'closed' &&
31+
github.event.pull_request.merged == true
32+
env:
33+
GITHUB_USER: 1gtm
34+
GITHUB_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }}
35+
run: |
36+
./hack/scripts/update-release-tracker.sh

.github/workflows/release.yml

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "*.*"
7+
8+
jobs:
9+
build:
10+
name: Build
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check out code into the Go module directory
14+
uses: actions/checkout@v1
15+
16+
- name: Print version info
17+
id: semver
18+
run: |
19+
make version
20+
21+
- name: Set up QEMU
22+
id: qemu
23+
uses: docker/setup-qemu-action@v1
24+
25+
- name: Set up Docker Buildx
26+
uses: docker/setup-buildx-action@v1
27+
28+
- name: Publish to GitHub Container Registry
29+
env:
30+
REGISTRY: ghcr.io/kubevault
31+
DOCKER_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }}
32+
USERNAME: 1gtm
33+
APPSCODE_ENV: prod
34+
run: |
35+
docker login ghcr.io --username ${USERNAME} --password ${DOCKER_TOKEN}
36+
make release
37+
38+
- name: Publish to Docker Registry
39+
env:
40+
DOCKER_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
41+
USERNAME: 1gtm
42+
APPSCODE_ENV: prod
43+
run: |
44+
docker login --username ${USERNAME} --password ${DOCKER_TOKEN}
45+
make release
46+
47+
- name: Release
48+
uses: softprops/action-gh-release@v1
49+
if: startsWith(github.event.ref, 'refs/tags/') && (contains(github.ref, '-alpha.') || contains(github.ref, '-beta.')) == false
50+
env:
51+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Compiled Object files, Static and Dynamic libs (Shared Objects)
2+
*.o
3+
*.a
4+
*.so
5+
6+
# Folders
7+
_obj
8+
_test
9+
10+
# Architecture specific extensions/prefixes
11+
*.cgo1.go
12+
*.cgo2.c
13+
_cgo_defun.c
14+
_cgo_gopointer.go
15+
_cgo_export.*
16+
17+
_testmain.go
18+
19+
*.exe
20+
*.test
21+
*.prof
22+
23+
/bin
24+
/.go
25+
26+
/.idea
27+
/.markdownlint.json
28+
/.vscode
29+
/apiserver.local.config
30+
/test/e2e/apiserver.local.config
31+
/coverage.txt
32+
/dist
33+
/hack/config/.env
34+
/test/e2e/junit.xml
35+
/test/e2e/report.xml

DCO

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Developer Certificate of Origin
2+
Version 1.1
3+
4+
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
5+
660 York Street, Suite 102,
6+
San Francisco, CA 94110 USA
7+
8+
Everyone is permitted to copy and distribute verbatim copies of this
9+
license document, but changing it is not allowed.
10+
11+
12+
Developer's Certificate of Origin 1.1
13+
14+
By making a contribution to this project, I certify that:
15+
16+
(a) The contribution was created in whole or in part by me and I
17+
have the right to submit it under the open source license
18+
indicated in the file; or
19+
20+
(b) The contribution is based upon previous work that, to the best
21+
of my knowledge, is covered under an appropriate open source
22+
license and I have the right under that license to submit that
23+
work with modifications, whether created in whole or in part
24+
by me, under the same open source license (unless I am
25+
permitted to submit under a different license), as indicated
26+
in the file; or
27+
28+
(c) The contribution was provided directly to me by some other
29+
person who certified (a), (b) or (c) and I have not modified
30+
it.
31+
32+
(d) I understand and agree that this project and the contribution
33+
are public and that a record of the contribution (including all
34+
personal information I submit with it, including my sign-off) is
35+
maintained indefinitely and may be redistributed consistent with
36+
this project or the open source license(s) involved.

Dockerfile.dbg

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Copyright AppsCode Inc. and Contributors
2+
#
3+
# Licensed under the AppsCode Community License 1.0.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# https://github.com/appscode/licenses/raw/1.0.0/AppsCode-Community-1.0.0.md
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
FROM {ARG_FROM}
16+
17+
LABEL org.opencontainers.image.source https://github.com/kubevault/prometheus-exporter
18+
19+
ADD bin/{ARG_OS}_{ARG_ARCH}/{ARG_BIN} /{ARG_BIN}
20+
ADD vault-mapping /vault-mapping
21+
22+
EXPOSE 9102 9125 9125/udp
23+
HEALTHCHECK CMD wget --spider -S "http://localhost:9102/metrics" -T 60 2>&1 || exit 1
24+
ENTRYPOINT ["/{ARG_BIN}", "--statsd.mapping-config=/vault-mapping"]

Dockerfile.in

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright AppsCode Inc. and Contributors
2+
#
3+
# Licensed under the AppsCode Community License 1.0.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# https://github.com/appscode/licenses/raw/1.0.0/AppsCode-Community-1.0.0.md
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
FROM {ARG_FROM}
16+
17+
LABEL org.opencontainers.image.source https://github.com/kubevault/prometheus-exporter
18+
19+
ADD bin/{ARG_OS}_{ARG_ARCH}/{ARG_BIN} /{ARG_BIN}
20+
ADD vault-mapping /vault-mapping
21+
22+
USER nobody
23+
EXPOSE 9102 9125 9125/udp
24+
HEALTHCHECK CMD wget --spider -S "http://localhost:9102/metrics" -T 60 2>&1 || exit 1
25+
ENTRYPOINT ["/{ARG_BIN}", "--statsd.mapping-config=/vault-mapping"]

LICENSE.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## License
2+
3+
Source code in this repository, Binaries, Docker images and Charts produced by the build process are licensed under the AppsCode Community License 1.0.0. You may obtain a copy of the License at
4+
5+
- [AppsCode-Community-1.0.0](https://github.com/appscode/licenses/raw/1.0.0/AppsCode-Community-1.0.0.md)

0 commit comments

Comments
 (0)