Skip to content

Commit

Permalink
update task/provision-env-with-ephemeral-namespace/0.1/provision-env-…
Browse files Browse the repository at this point in the history
…with-ephemeral-namespace.yaml
  • Loading branch information
rh-tap-build-team[bot] authored and ralphbean committed May 29, 2024
1 parent 9b51695 commit 6fa633c
Showing 1 changed file with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ kind: Task
metadata:
name: provision-env-with-ephemeral-namespace
spec:
params:
- name: KONFLUXNAMESPACE
type: string
- name: PIPELINERUN_NAME
type: string
- name: PIPELINERUN_UID
type: string
results:
- name: secretRef
description:
Expand All @@ -15,11 +22,11 @@ spec:
image: registry.redhat.io/openshift4/ose-cli:4.13@sha256:73df37794ffff7de1101016c23dc623e4990810390ebdabcbbfa065214352c7c
env:
- name: KONFLUXNAMESPACE
value: "$(context.pipelineRun.namespace)"
value: $(params.KONFLUXNAMESPACE)
- name: PIPELINERUN_NAME
value: "$(context.pipelineRun.name)"
value: $(params.PIPELINERUN_NAME)
- name: PIPELINERUN_UID
value: "$(context.pipelineRun.uid)"
value: $(params.PIPELINERUN_UID)
script: |
#!/bin/bash
set -ex
Expand Down

0 comments on commit 6fa633c

Please sign in to comment.