-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds script to create a release using Tekton
Signed-off-by: Shivam Mukhade <[email protected]>
- Loading branch information
SM43
committed
Mar 5, 2021
1 parent
9dc8a9e
commit 882770f
Showing
22 changed files
with
727 additions
and
18 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 |
---|---|---|
|
@@ -16,7 +16,6 @@ apiVersion: v1 | |
kind: Secret | ||
metadata: | ||
name: db | ||
namespace: tekton-hub | ||
labels: | ||
app: db | ||
type: Opaque | ||
|
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
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 |
---|---|---|
|
@@ -16,7 +16,6 @@ apiVersion: apps/v1 | |
kind: Deployment | ||
metadata: | ||
name: db | ||
namespace: tekton-hub | ||
labels: | ||
app: db | ||
spec: | ||
|
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 |
---|---|---|
|
@@ -16,7 +16,6 @@ apiVersion: v1 | |
kind: Service | ||
metadata: | ||
name: db | ||
namespace: tekton-hub | ||
labels: | ||
app: db | ||
spec: | ||
|
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
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
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 |
---|---|---|
|
@@ -16,7 +16,6 @@ apiVersion: v1 | |
kind: ConfigMap | ||
metadata: | ||
name: api | ||
namespace: tekton-hub | ||
labels: | ||
app: api | ||
data: | ||
|
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
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 |
---|---|---|
|
@@ -17,7 +17,6 @@ apiVersion: v1 | |
kind: Service | ||
metadata: | ||
name: api | ||
namespace: tekton-hub | ||
labels: | ||
app: api | ||
spec: | ||
|
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
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 |
---|---|---|
|
@@ -3,7 +3,6 @@ apiVersion: apps/v1 | |
kind: Deployment | ||
metadata: | ||
name: ui | ||
namespace: tekton-hub | ||
labels: | ||
app: ui | ||
spec: | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,6 @@ apiVersion: v1 | |
kind: Service | ||
metadata: | ||
name: ui | ||
namespace: tekton-hub | ||
labels: | ||
app: ui | ||
spec: | ||
|
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
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
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
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
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
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
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,95 @@ | ||
# Copyright © 2021 The Tekton Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
apiVersion: tekton.dev/v1beta1 | ||
kind: Task | ||
metadata: | ||
name: golang-db-test | ||
labels: | ||
app.kubernetes.io/version: "0.1" | ||
annotations: | ||
tekton.dev/pipelines.minVersion: "0.12.1" | ||
tekton.dev/tags: test | ||
tekton.dev/displayName: "golang test" | ||
spec: | ||
description: >- | ||
This Task is Golang task to test Go projects. | ||
params: | ||
- name: package | ||
description: package (and its children) under test | ||
- name: packages | ||
description: "packages to test (default: ./...)" | ||
default: "./..." | ||
- name: path_context | ||
description: path to the directory to use as context. | ||
default: "." | ||
- name: version | ||
description: golang version to use for tests | ||
default: "latest" | ||
- name: flags | ||
description: flags to use for the test command | ||
default: -race -cover -v | ||
- name: GOOS | ||
description: "running program's operating system target" | ||
default: linux | ||
- name: GOARCH | ||
description: "running program's architecture target" | ||
default: amd64 | ||
- name: GO111MODULE | ||
description: "value of module support" | ||
default: auto | ||
workspaces: | ||
- name: source | ||
steps: | ||
- name: unit-test | ||
image: docker.io/library/golang:$(params.version) | ||
script: | | ||
SRC_PATH="$GOPATH/src/$(params.package)/$(params.path_context)" | ||
mkdir -p $SRC_PATH | ||
cp -R "$(workspaces.source.path)"/"$(params.path_context)"/* $SRC_PATH | ||
cd $SRC_PATH | ||
go test $(params.flags) $(params.packages) | ||
env: | ||
- name: GOOS | ||
value: "$(params.GOOS)" | ||
- name: GOARCH | ||
value: "$(params.GOARCH)" | ||
- name: GO111MODULE | ||
value: "$(params.GO111MODULE)" | ||
- name: POSTGRES_HOST | ||
value: localhost | ||
- name: POSTGRES_DB | ||
value: hub_test | ||
- name: POSTGRES_USER | ||
value: postgres | ||
- name: POSTGRES_PASSWORD | ||
value: postgres | ||
- name: POSTGRES_PORT | ||
value: "5432" | ||
sidecars: | ||
- image: postgres:13@sha256:260a98d976574b439712c35914fdcb840755233f79f3e27ea632543f78b7a21e | ||
name: db | ||
ports: | ||
- containerPort: 5432 | ||
protocol: TCP | ||
env: | ||
- name: POSTGRES_DB | ||
value: hub_test | ||
- name: POSTGRES_USER | ||
value: postgres | ||
- name: POSTGRES_PASSWORD | ||
value: postgres | ||
- name: PGDATA | ||
value: /var/lib/postgresql/data/pgdata |
Oops, something went wrong.