Skip to content

Commit 93533bf

Browse files
committed
fix: initial spike
0 parents  commit 93533bf

31 files changed

+4137
-0
lines changed

.gitignore

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.dll
4+
*.so
5+
*.dylib
6+
7+
# Test binary, build with `go test -c`
8+
*.test
9+
10+
# Output of the go coverage tool, specifically when used with LiteIDE
11+
*.out
12+
13+
debug
14+
15+
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
16+
.glide/
17+
18+
.idea/
19+
*.iml
20+
21+
.vscode/
22+
23+
#Various temporary created while building/running jx.
24+
/build/
25+
/release/
26+
dist/
27+
scanning/
28+
.updatebot-repos/
29+
.terraform/
30+
myvalues.yaml
31+
myvalues.yml
32+
**/extraValues.yaml
33+
changelog.md
34+
35+
# vim swap files
36+
*.swp
37+
38+
#OSX system files.
39+
**/.DS_Store
40+
41+
vendor/**
42+
43+
# if you run `jx install --gitops` locally
44+
jenkins-x-dev-environment
45+
46+
# generated apidocs
47+
docs/apidocs/build
48+
docs/apidocs/includes
49+
docs/apidocs/site
50+
51+
# ignore these files 1 by 1 so we can not ignore the stylesheet override
52+
docs/apidocs/static/FontAwesome.otf
53+
docs/apidocs/static/bootstrap-3.3.7.min.js
54+
docs/apidocs/static/bootstrap.min.css
55+
docs/apidocs/static/font-awesome.min.css
56+
docs/apidocs/static/fontawesome-webfont.eot
57+
docs/apidocs/static/fontawesome-webfont.svg
58+
docs/apidocs/static/fontawesome-webfont.ttf
59+
docs/apidocs/static/fontawesome-webfont.woff
60+
docs/apidocs/static/fontawesome-webfont.woff2
61+
docs/apidocs/static/jquery-3.2.1.min.js
62+
docs/apidocs/static/jquery.scrollTo.min.js
63+
docs/apidocs/static/scroll.js
64+
pkg/jx/cmd/verify-pod.log
65+
66+
plugin.gz

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.

Makefile

+181
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
# Make does not offer a recursive wildcard function, so here's one:
2+
rwildcard=$(wildcard $1$2) $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2))
3+
4+
SHELL := /bin/bash
5+
NAME := jx-helpers
6+
BINARY_NAME := jx-alpha-extsecret
7+
BUILD_TARGET = build
8+
MAIN_SRC_FILE=cmd/main.go
9+
GO := GO111MODULE=on go
10+
GO_NOMOD :=GO111MODULE=off go
11+
REV := $(shell git rev-parse --short HEAD 2> /dev/null || echo 'unknown')
12+
ORG := jenkins-x
13+
ORG_REPO := $(ORG)/$(NAME)
14+
RELEASE_ORG_REPO := $(ORG_REPO)
15+
ROOT_PACKAGE := github.com/$(ORG_REPO)
16+
GO_VERSION := $(shell $(GO) version | sed -e 's/^[^0-9.]*\([0-9.]*\).*/\1/')
17+
GO_DEPENDENCIES := $(call rwildcard,pkg/,*.go) $(call rwildcard,cmd/j,*.go)
18+
19+
BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2> /dev/null || echo 'unknown')
20+
BUILD_DATE := $(shell date +%Y%m%d-%H:%M:%S)
21+
CGO_ENABLED = 0
22+
23+
GOPRIVATE := github.com/jenkins-x/jx-promote
24+
25+
REPORTS_DIR=$(BUILD_TARGET)/reports
26+
27+
GOTEST := $(GO) test
28+
29+
# set dev version unless VERSION is explicitly set via environment
30+
VERSION ?= $(shell echo "$$(git for-each-ref refs/tags/ --count=1 --sort=-version:refname --format='%(refname:short)' 2>/dev/null)-dev+$(REV)" | sed 's/^v//')
31+
32+
# Build flags for setting build-specific configuration at build time - defaults to empty
33+
#BUILD_TIME_CONFIG_FLAGS ?= ""
34+
35+
# Full build flags used when building binaries. Not used for test compilation/execution.
36+
BUILDFLAGS := -ldflags \
37+
" -X $(ROOT_PACKAGE)/pkg/version.Version=$(VERSION)\
38+
-X $(ROOT_PACKAGE)/pkg/version.Revision='$(REV)'\
39+
-X $(ROOT_PACKAGE)/pkg/version.Branch='$(BRANCH)'\
40+
-X $(ROOT_PACKAGE)/pkg/version.BuildDate='$(BUILD_DATE)'\
41+
-X $(ROOT_PACKAGE)/pkg/version.GoVersion='$(GO_VERSION)'\
42+
$(BUILD_TIME_CONFIG_FLAGS)"
43+
44+
# Some tests expect default values for version.*, so just use the config package values there.
45+
TEST_BUILDFLAGS := -ldflags "$(BUILD_TIME_CONFIG_FLAGS)"
46+
47+
ifdef DEBUG
48+
BUILDFLAGS := -gcflags "all=-N -l" $(BUILDFLAGS)
49+
endif
50+
51+
ifdef PARALLEL_BUILDS
52+
BUILDFLAGS += -p $(PARALLEL_BUILDS)
53+
GOTEST += -p $(PARALLEL_BUILDS)
54+
else
55+
# -p 4 seems to work well for people
56+
GOTEST += -p 4
57+
endif
58+
59+
ifdef DISABLE_TEST_CACHING
60+
GOTEST += -count=1
61+
endif
62+
63+
TEST_PACKAGE ?= ./...
64+
COVER_OUT:=$(REPORTS_DIR)/cover.out
65+
COVERFLAGS=-coverprofile=$(COVER_OUT) --covermode=count --coverpkg=./...
66+
67+
.PHONY: list
68+
list: ## List all make targets
69+
@$(MAKE) -pRrn : -f $(MAKEFILE_LIST) 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' | sort
70+
71+
.PHONY: help
72+
.DEFAULT_GOAL := help
73+
help:
74+
@grep -h -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
75+
76+
full: check ## Build and run the tests
77+
check: build test ## Build and run the tests
78+
get-test-deps: ## Install test dependencies
79+
$(GO_NOMOD) get github.com/axw/gocov/gocov
80+
$(GO_NOMOD) get -u gopkg.in/matm/v1/gocov-html
81+
82+
print-version: ## Print version
83+
@echo $(VERSION)
84+
85+
build: $(GO_DEPENDENCIES) clean ## Build jx-labs binary for current OS
86+
CGO_ENABLED=$(CGO_ENABLED) $(GO) $(BUILD_TARGET) $(BUILDFLAGS) -o build/$(BINARY_NAME) $(MAIN_SRC_FILE)
87+
88+
build-all: $(GO_DEPENDENCIES) build make-reports-dir ## Build all files - runtime, all tests etc.
89+
CGO_ENABLED=$(CGO_ENABLED) $(GOTEST) -run=nope -tags=integration -failfast -short ./... $(BUILDFLAGS)
90+
91+
tidy-deps: ## Cleans up dependencies
92+
$(GO) mod tidy
93+
# mod tidy only takes compile dependencies into account, let's make sure we capture tooling dependencies as well
94+
@$(MAKE) install-generate-deps
95+
96+
.PHONY: make-reports-dir
97+
make-reports-dir:
98+
mkdir -p $(REPORTS_DIR)
99+
100+
test: ## Run tests with the "unit" build tag
101+
KUBECONFIG=/cluster/connections/not/allowed CGO_ENABLED=$(CGO_ENABLED) $(GOTEST) --tags="integration unit" -failfast -short ./... $(TEST_BUILDFLAGS)
102+
103+
test-coverage : make-reports-dir ## Run tests and coverage for all tests with the "unit" build tag
104+
CGO_ENABLED=$(CGO_ENABLED) $(GOTEST) --tags=unit $(COVERFLAGS) -failfast -short ./... $(TEST_BUILDFLAGS)
105+
106+
test-report: make-reports-dir get-test-deps test-coverage ## Create the test report
107+
@gocov convert $(COVER_OUT) | gocov report
108+
109+
test-report-html: make-reports-dir get-test-deps test-coverage ## Create the test report in HTML format
110+
@gocov convert $(COVER_OUT) | gocov-html > $(REPORTS_DIR)/cover.html && open $(REPORTS_DIR)/cover.html
111+
112+
install: $(GO_DEPENDENCIES) ## Install the binary
113+
GOBIN=${GOPATH}/bin $(GO) install $(BUILDFLAGS) $(MAIN_SRC_FILE)
114+
115+
linux: ## Build for Linux
116+
CGO_ENABLED=$(CGO_ENABLED) GOOS=linux GOARCH=amd64 $(GO) $(BUILD_TARGET) $(BUILDFLAGS) -o build/linux/$(BINARY_NAME) $(MAIN_SRC_FILE)
117+
chmod +x build/linux/$(BINARY_NAME)
118+
119+
arm: ## Build for ARM
120+
CGO_ENABLED=$(CGO_ENABLED) GOOS=linux GOARCH=arm $(GO) $(BUILD_TARGET) $(BUILDFLAGS) -o build/arm/$(BINARY_NAME) $(MAIN_SRC_FILE)
121+
chmod +x build/arm/$(BINARY_NAME)
122+
123+
win: ## Build for Windows
124+
CGO_ENABLED=$(CGO_ENABLED) GOOS=windows GOARCH=amd64 $(GO) $(BUILD_TARGET) $(BUILDFLAGS) -o build/win/$(BINARY_NAME)-windows-amd64.exe $(MAIN_SRC_FILE)
125+
126+
darwin: ## Build for OSX
127+
CGO_ENABLED=$(CGO_ENABLED) GOOS=darwin GOARCH=amd64 $(GO) $(BUILD_TARGET) $(BUILDFLAGS) -o build/darwin/$(BINARY_NAME) $(MAIN_SRC_FILE)
128+
chmod +x build/darwin/$(BINARY_NAME)
129+
130+
.PHONY: release
131+
release: clean linux test promoter
132+
133+
release-all: release linux win darwin
134+
135+
promoter:
136+
cd promote && go build main.go
137+
138+
.PHONY: goreleaser
139+
goreleaser:
140+
step-go-releaser --organisation=$(ORG) --revision=$(REV) --branch=$(BRANCH) --build-date=$(BUILD_DATE) --go-version=$(GO_VERSION) --root-package=$(ROOT_PACKAGE) --version=$(VERSION)
141+
142+
.PHONY: clean
143+
clean: ## Clean the generated artifacts
144+
rm -rf build release dist
145+
146+
get-fmt-deps: ## Install test dependencies
147+
$(GO_NOMOD) get golang.org/x/tools/cmd/goimports
148+
149+
.PHONY: fmt
150+
fmt: importfmt ## Format the code
151+
$(eval FORMATTED = $(shell $(GO) fmt ./...))
152+
@if [ "$(FORMATTED)" == "" ]; \
153+
then \
154+
echo "All Go files properly formatted"; \
155+
else \
156+
echo "Fixed formatting for: $(FORMATTED)"; \
157+
fi
158+
159+
.PHONY: importfmt
160+
importfmt: get-fmt-deps
161+
@echo "Formatting the imports..."
162+
goimports -w $(GO_DEPENDENCIES)
163+
164+
.PHONY: lint
165+
lint: ## Lint the code
166+
./hack/gofmt.sh
167+
./hack/linter.sh
168+
./hack/generate.sh
169+
170+
.PHONY: all
171+
all: fmt build lint test
172+
173+
bin/docs:
174+
go build $(LDFLAGS) -v -o bin/docs cmd/docs/*.go
175+
176+
.PHONY: docs
177+
docs: bin/docs ## update docs
178+
@echo "Generating docs"
179+
@./bin/docs --target=./docs/cmd
180+
@./bin/docs --target=./docs/man/man1 --kind=man
181+
@rm -f ./bin/docs

OWNERS

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
approvers:
2+
- rawlingsj
3+
- jstrachan
4+
- rajdavies
5+
reviewers:
6+
- rawlingsj
7+
- jstrachan
8+
- rajdavies

OWNERS_ALIASES

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
aliases:
2+
- rawlingsj
3+
best-approvers:
4+
- rawlingsj
5+
best-reviewers:
6+
- rawlingsj

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# jx-helpers
2+
3+
[![Documentation](https://godoc.org/github.com/jenkins-x/jx-helpers?status.svg)](https://pkg.go.dev/mod/github.com/jenkins-x/jx-helpers)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/jenkins-x/jx-helpers)](https://goreportcard.com/report/github.com/jenkins-x/jx-helpers)
5+
[![Releases](https://img.shields.io/github/release-pre/jenkins-x/jx-helpers.svg)](https://github.com/jenkins-x/jx-helpers/releases)
6+
[![LICENSE](https://img.shields.io/github/license/jenkins-x/jx-helpers.svg)](https://github.com/jenkins-x/jx-helpers/blob/master/LICENSE)
7+
[![Slack Status](https://img.shields.io/badge/slack-join_chat-white.svg?logo=slack&style=social)](https://slack.k8s.io/)
8+
9+
`jx-helpers` is a small library of helper functions for working with the commands, git and kubernetes

SECURITY.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Security Policy
2+
3+
The Jenkins X project takes security seriously. We make every possible effort to ensure users can adequately secure their automation infrastructure. To that end, we work with Jenkins X platform and app developers, as well as security researchers, to fix security vulnerabilities in Jenkins X in a timely manner, and to improve the security of Jenkins X in general.
4+
5+
## Supported Versions
6+
7+
| Version | Supported |
8+
| ------- | ------------------ |
9+
| 2.0.x | :white_check_mark: |
10+
11+
12+
## Reporting a Vulnerability
13+
14+
If you find a vulnerability in Jenkins X, please report it in the Jenkins CI issue tracker under the [SECURITY](https://issues.jenkins-ci.org/browse/SECURITY) project. **Please do not report security issues in the github tracker.**
15+
This project is configured in such a way that only the reporter and the security team can see the details. By restricting access to this potentially sensitive information, we can work on a fix and deliver it before the method of attack becomes well-known.
16+
17+
If you are unable to report using the above issue tracker, you can also send your report to the private Jenkins Security Team mailing list: [email protected]
18+
19+
## Vulnerabilities in Apps
20+
21+
Whilst the Jenkins X team is not responsible for the quality of third party apps, please still use the above reporting mechanism and we will co-ordinate with the app developer to ensure a fix in a secure maner.

go.mod

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
module github.com/jenkins-x/jx-helpers
2+
3+
require (
4+
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38 // indirect
5+
github.com/docker/go-units v0.4.0 // indirect
6+
github.com/google/go-cmp v0.3.1
7+
github.com/jenkins-x/jx-kube-client v0.0.3 // indirect
8+
github.com/jenkins-x/jx-logging v0.0.8
9+
github.com/jenkins-x/jx/v2 v2.1.78
10+
github.com/onsi/ginkgo v1.10.1 // indirect
11+
github.com/onsi/gomega v1.7.0 // indirect
12+
github.com/pkg/errors v0.9.1
13+
github.com/satori/go.uuid v1.2.1-0.20180103174451-36e9d2ebbde5
14+
github.com/sergi/go-diff v1.1.0 // indirect
15+
github.com/shirou/gopsutil v0.0.0-20190901111213-e4ec7b275ada // indirect
16+
github.com/spf13/cobra v1.0.0 // indirect
17+
github.com/stretchr/testify v1.6.0
18+
gopkg.in/AlecAivazis/survey.v1 v1.8.3
19+
k8s.io/api v0.17.0
20+
k8s.io/apimachinery v0.17.0
21+
k8s.io/client-go v11.0.1-0.20190805182717-6502b5e7b1b5+incompatible
22+
k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a // indirect
23+
sigs.k8s.io/yaml v1.2.0
24+
25+
)
26+
27+
replace github.com/heptio/sonobuoy => github.com/jenkins-x/sonobuoy v0.11.7-0.20190318120422-253758214767
28+
29+
replace k8s.io/api => k8s.io/api v0.0.0-20190528110122-9ad12a4af326
30+
31+
replace k8s.io/metrics => k8s.io/metrics v0.0.0-20181128195641-3954d62a524d
32+
33+
replace k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190221084156-01f179d85dbc
34+
35+
replace k8s.io/client-go => k8s.io/client-go v0.0.0-20190528110200-4f3abb12cae2
36+
37+
replace k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190528110544-fa58353d80f3
38+
39+
replace github.com/sirupsen/logrus => github.com/jtnord/logrus v1.4.2-0.20190423161236-606ffcaf8f5d
40+
41+
replace github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v21.1.0+incompatible
42+
43+
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v10.15.5+incompatible
44+
45+
replace github.com/banzaicloud/bank-vaults => github.com/banzaicloud/bank-vaults v0.0.0-20190508130850-5673d28c46bd
46+
47+
replace github.com/TV4/logrus-stackdriver-formatter => github.com/jenkins-x/logrus-stackdriver-formatter v0.1.1-0.20200408213659-1dcf20c371bb
48+
49+
replace code.gitea.io/sdk/gitea => code.gitea.io/sdk/gitea v0.12.0
50+
51+
go 1.13

0 commit comments

Comments
 (0)