forked from drewandersonnz/ocm-container-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.source.sample
More file actions
36 lines (30 loc) · 902 Bytes
/
Copy pathenv.source.sample
File metadata and controls
36 lines (30 loc) · 902 Bytes
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
35
### 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 toggle to run the ssh-agent inside the container
### to enale set it to 'ssh-agent'
export SSH_AUTH_ENABLE=${SSH_AUTH_ENABLE:-}
### 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 ocm Offline Access Token from
### https://cloud.redhat.com/openshift/token
export OFFLINE_ACCESS_TOKEN="\
your \
token \
here \
"