env:
- name: FIELDREF_ENV
valueFrom:
fieldRef:
fieldPath: metadata.name
Azure Red Hat OpenShift 3.11 will be retired 30 June 2022. Support for creation of new Azure Red Hat OpenShift 3.11 clusters continues through 30 November 2020. Following retirement, remaining Azure Red Hat OpenShift 3.11 clusters will be shut down to prevent security vulnerabilities.
Follow this guide to create an Azure Red Hat OpenShift 4 cluster. If you have specific questions, please contact us
As with pod environment variables, build environment variables can be defined in terms of references to other resources/variables using the Downward API. However, there are some exceptions as noted below.
You can also manage environment variables defined in the |
You can inject information about the build object by setting the fieldPath
environment variable source to the JsonPath
of the field from which you are
interested in obtaining the value.
env:
- name: FIELDREF_ENV
valueFrom:
fieldRef:
fieldPath: metadata.name
Jenkins Pipeline strategy does not support |
Referencing container resources using valueFrom
in build environment variables
is not supported as the references are resolved before the container is created.
You can make key values from Secrets available as environment variables using
the valueFrom
syntax.
apiVersion: v1
kind: BuildConfig
metadata:
name: secret-example-bc
spec:
strategy:
sourceStrategy:
env:
- name: MYVAL
valueFrom:
secretKeyRef:
key: myval
name: mysecret