-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
35 additions
and
2 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 |
---|---|---|
@@ -1 +1,35 @@ | ||
# konflux-tooling | ||
# Konflux Tooling | ||
|
||
This contains the tooling needed by PNC when running within a Konflux pipeline. The following 'mini-tools' are | ||
provided, all of which are intended to be called from a Tekton pipeline e.g. | ||
|
||
``` | ||
- name: deploy | ||
image: $(params.JVM_BUILD_SERVICE_REQPROCESSOR_IMAGE) | ||
securityContext: | ||
runAsUser: 0 | ||
volumeMounts: | ||
- mountPath: /mnt/trusted-ca | ||
name: trusted-ca | ||
readOnly: true | ||
env: | ||
- name: ACCESS_TOKEN | ||
value: $(params.ACCESS_TOKEN) | ||
args: | ||
- deploy | ||
- --directory=/var/workdir/deployment | ||
- --mvn-repo=$(params.MVN_REPO) | ||
- --mvn-username=$(params.MVN_USERNAME) | ||
- --server-id=$(params.MVN_SERVER_ID) | ||
``` | ||
|
||
The current tools are: | ||
|
||
* Preprocessor : used to preprocess build sources to add a build script and Containerfile. | ||
* Deploy: used (with MavenRepositoryDeployer) to deploy files to a maven repository. | ||
* CopyArtifacts: used by Ant builds to move built artifacts to the correct location. | ||
* Notify: used to notify PNC components that a pipeline has finished. | ||
|
||
|
||
It is deployed as an image to https://quay.io/repository/redhat-user-workloads/konflux-jbs-pnc-tenant/konflux-tooling?tab=tags&tag=latest |
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