forked from openshift/ocm-container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.source.sample
35 lines (29 loc) · 932 Bytes
/
env.source.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
### Select container subsystem, options include:
### - "docker"
### - "sudo docker"
### - "podman"
### How its used:
### build.sh: time ${CONTAINER_SUBSYS} build
### ocm-container.sh: ${CONTAINER_SUBSYS} run -it --rm
export CONTAINER_SUBSYS="sudo docker"
### Select cli, options include:
### - "ocm"
### - "moactl"
### defaults to "ocm"
export CLI=${CLI:-}
### The Url in which you want your ocm queries to go to
### you can use 'staging' or 'integration'
###
### for more information see `ocm login -h`
export OCM_URL=${OCM_URL:-}
### Your user for ocm, passed to ocm
export OCM_USER=${OCM_USER:-your_user}
### Your kerberos username (without domain) if different than your OCM_USER
export OCM_CONTAINER_KERBEROS_USER=${OCM_CONTAINER_KERBEROS_USER:-${OCM_USER:-$(whoami)}}
### Your ocm Offline Access Token from
### https://cloud.redhat.com/openshift/token
export OFFLINE_ACCESS_TOKEN="\
your \
token \
here \
"