Created
August 25, 2015 07:29
-
-
Save iocanel/df7197b96d17e87bbb5b to your computer and use it in GitHub Desktop.
Openshift client with custom config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Openshift client with custom config | |
| OpenshiftConfig config = new OpenshiftConfigBuilder() | |
| .withMasterUrl(url) | |
| .withOpenShiftUrl(openshiftUrl) | |
| .withTrustCerts(true) | |
| .build(); | |
| OpenshiftClient client = new DefaultOpenshiftClient(config); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment