chakwifi:t5 cjonagam$ apb list
No APBs found
chakwifi:t5 cjonagam$ apb push --registry-route=docker-registry-default.apps.run9.io
version: 1.0
name: t5
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
| [origin-repo] | |
| name=Origin RPMs | |
| baseurl=https://rpms.svc.ci.openshift.org/openshift-origin-v3.11/ | |
| enabled=1 | |
| gpgcheck=0 |
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
| FROM registry.access.redhat.com/redhat-sso-7/sso71-openshift:1.1 | |
| MAINTAINER chakradhar Jonagam | |
| # Temporarily elevate permissions | |
| USER root | |
| # Download JAR & set right permissions | |
| ADD https://files.slack.com/files-pri/T0383HKJ0-FD5MK42MC/download/user-storage-jpa-example.jar /opt/eap/standalone/deployments/user-storage-jpa-example.jar | |
| RUN cd /opt/eap/standalone/deployments && \ | |
| chown jboss:jboss user-storage-jpa-example.jar && \ |
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
| hello world |
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
| <?xml version="1.0" encoding="UTF-8"?><Response><Message><Body>You are said :undefined. | |
| Configure your WhatsApp Sandbox's Inbound URL to change this message.</Body></Message></Response> |
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
| 'use strict'; | |
| angular.module("mylinkextensions", ['openshiftConsole']) | |
| .run(function(extensionRegistry) { | |
| extensionRegistry.add('log-links', _.spread(function(resource, options) { | |
| return { | |
| type: 'dom', | |
| node: '<span><a href="https://extension-point.example.com">' + resource.metadata.name + '</a><span class="action-divider">|</span></span>' | |
| }; | |
| })); | |
| }); |
for i in $(oc get projects | grep Terminating| awk '{print $1}'); do echo $i; oc get serviceinstance -n $i -o yaml | sed "/kubernetes-incubator/d"| oc apply -f - ; done
for i in $(oc get projects | grep Terminating| awk '{print $1}'); do echo $i; oc get servicebinding -n $i -o yaml | sed "/kubernetes-incubator/d"| oc apply -f - ; done
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
| --- | |
| apiVersion: config.istio.io/v1alpha2 | |
| kind: EndUserAuthenticationPolicySpec | |
| metadata: | |
| name: cars-api-auth-policy | |
| namespace: default | |
| spec: | |
| jwts: | |
| - issuer: http://keycloak:8080/auth/realms/istio | |
| jwks_uri: http://keycloak:8080/auth/realms/istio/protocol/openid-connect/certs |
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
| --- | |
| apiVersion: config.istio.io/v1alpha2 | |
| kind: EndUserAuthenticationPolicySpec | |
| metadata: | |
| name: cars-api-auth-policy | |
| namespace: default | |
| spec: | |
| jwts: | |
| - issuer: http://keycloak.default:8080/auth/realms/istio | |
| jwks_uri: http://keycloak.default:8080/auth/realms/istio/protocol/openid-connect/certs |
oc label node <node1> vora_workload=true
oc label node <node2> vora_workload=true
oc patch statefulset/vora-dlog-1 -p '{"spec":{"template":{"spec":{"nodeSelector":{"vora_workload":"true"}}}}}'