mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* Remove deprecated nodejs 8 images * Update README * Updated README * Addressed review comments * Fixing unit test failure * Addressed review comment * Fixing travis failure * Checking oc version * Applying supported image imagestream * Applying supported image imagestream * Added supported is * Debugging * Cleanup * Updated test doc * Cleanup
10 lines
305 B
Bash
Executable File
10 lines
305 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
# Image stream source https://github.com/openshift/library/tree/master/community
|
|
|
|
# odo supported nodejs image stream
|
|
oc apply -n openshift -f tests/image-streams/supported-nodejs.json
|
|
# odo supported java image stream
|
|
oc apply -n openshift -f tests/image-streams/supported-java.json
|