-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit 23fed0f.
- Loading branch information
Showing
282 changed files
with
1,950 additions
and
1,908 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
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 |
---|---|---|
|
@@ -14,6 +14,7 @@ defaults: | |
run: | ||
shell: bash | ||
working-directory: ./pay-queue | ||
|
||
jobs: | ||
setup-job: | ||
runs-on: ubuntu-20.04 | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -19,12 +19,5 @@ | |
"application": [ | ||
"relationship-api" | ||
] | ||
}, | ||
{ | ||
"vault": "gcp-queue", | ||
"application": [ | ||
"gtksf3", | ||
"topics" | ||
] | ||
} | ||
] |
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,139 @@ | ||
{ | ||
"kind": "Template", | ||
"apiVersion": "v1", | ||
"metadata": { | ||
"annotations": { | ||
"description": "Build template for a FTP Poller job.", | ||
"tags": "flask", | ||
"iconClass": "icon-python" | ||
}, | ||
"name": "${NAME}-build-template" | ||
}, | ||
"objects": [ | ||
{ | ||
"kind": "ImageStream", | ||
"apiVersion": "v1", | ||
"metadata": { | ||
"name": "${NAME}" | ||
} | ||
}, | ||
{ | ||
"kind": "BuildConfig", | ||
"apiVersion": "v1", | ||
"metadata": { | ||
"name": "${NAME}", | ||
"labels": { | ||
"app": "${NAME}", | ||
"app-group": "${APP_GROUP}", | ||
"template": "${NAME}-build" | ||
} | ||
}, | ||
"spec": { | ||
"source": { | ||
"type": "Git", | ||
"git": { | ||
"uri": "${GIT_REPO_URL}", | ||
"ref": "${GIT_REF}" | ||
}, | ||
"contextDir": "${SOURCE_CONTEXT_DIR}" | ||
}, | ||
"strategy": { | ||
"type": "Docker", | ||
"dockerStrategy": { | ||
"dockerfilePath": "${DOCKER_FILE_PATH}" | ||
} | ||
}, | ||
"output": { | ||
"to": { | ||
"kind": "ImageStreamTag", | ||
"name": "${NAME}:${OUTPUT_IMAGE_TAG}" | ||
} | ||
}, | ||
"triggers": [ | ||
{ | ||
"type": "ConfigChange" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"parameters": [ | ||
{ | ||
"name": "NAME", | ||
"displayName": "Name", | ||
"description": "The name assigned to all of the objects defined in this template. You should keep this as default unless your know what your doing.", | ||
"required": true, | ||
"value": "ftp-poller" | ||
}, | ||
{ | ||
"name": "APP_GROUP", | ||
"displayName": "App Group", | ||
"description": "The name assigned to all of the deployments in this project.", | ||
"required": true, | ||
"value": "sbc-pay" | ||
}, | ||
{ | ||
"name": "GIT_REPO_URL", | ||
"displayName": "Git Repo URL", | ||
"description": "The URL to your GIT repo, don't use the this default unless your just experimenting.", | ||
"required": true, | ||
"value": "https://github.com/bcgov/sbc-pay.git" | ||
}, | ||
{ | ||
"name": "GIT_REF", | ||
"displayName": "Git Reference", | ||
"description": "The git reference or branch.", | ||
"required": true, | ||
"value": "development" | ||
}, | ||
{ | ||
"name": "SOURCE_CONTEXT_DIR", | ||
"displayName": "Source Context Directory", | ||
"description": "The source context directory.", | ||
"required": true, | ||
"value": "jobs/ftp-poller" | ||
}, | ||
{ | ||
"name": "SOURCE_IMAGE_KIND", | ||
"displayName": "Source Image Kind", | ||
"required": true, | ||
"description": "The 'kind' (type) of the source image; typically ImageStreamTag, or DockerImage.", | ||
"value": "ImageStreamTag" | ||
}, | ||
{ | ||
"name": "SOURCE_IMAGE_NAME_SPACE", | ||
"displayName": "Source Image Name Space", | ||
"required": true, | ||
"description": "The name space of the source image.", | ||
"value": "d7eovc-tools" | ||
}, | ||
{ | ||
"name": "SOURCE_IMAGE_NAME", | ||
"displayName": "Source Image Name", | ||
"required": true, | ||
"description": "The name of the source image.", | ||
"value": "python" | ||
}, | ||
{ | ||
"name": "SOURCE_IMAGE_TAG", | ||
"displayName": "Source Image Tag", | ||
"required": true, | ||
"description": "The tag of the source image.", | ||
"value": "3.7" | ||
}, | ||
{ | ||
"name": "OUTPUT_IMAGE_TAG", | ||
"displayName": "Output Image Tag", | ||
"description": "The tag given to the built image.", | ||
"required": true, | ||
"value": "latest" | ||
}, | ||
{ | ||
"name": "DOCKER_FILE_PATH", | ||
"displayName": "Docker File Path", | ||
"description": "The path to the docker file defining the build.", | ||
"required": false, | ||
"value": "Dockerfile" | ||
} | ||
] | ||
} |
Oops, something went wrong.