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: 1.0.0 | |
metadata: | |
generateName: covidVolutneering- | |
projects: | |
- | |
name: node-app | |
source: | |
type: git | |
location: "[email protected]:rhopp/node-app.git" |
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
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials( | |
com.cloudbees.plugins.credentials.Credentials.class | |
) | |
for (c in creds) { | |
println(c.id) | |
println(c.class) | |
if (c.properties.username) { | |
println(" description: " + c.description) | |
} |
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: 1.0.0 | |
metadata: | |
generateName: nodejs- | |
projects: | |
- | |
name: nodejs-web-app | |
source: | |
type: git | |
location: "https://github.com/eclipse/che.git" |
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
metadata: | |
name: wksp-kjuo | |
projects: | |
- name: java-web-spring | |
source: | |
location: 'https://github.com/spring-projects/spring-petclinic.git' | |
type: git | |
branch: master | |
attributes: | |
persistVolumes: 'false' |
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
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "npm", | |
"script": "test-operatorhub-installation", | |
"problemMatcher": [], | |
"options": { |
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 IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Mocha Tests", |
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: org.eclipse.che/v1 | |
kind: CheCluster | |
metadata: | |
creationTimestamp: '2019-11-22T13:39:30Z' | |
generation: 13 | |
name: codeready-workspaces | |
namespace: crw2-upstream-tests-pipeline | |
resourceVersion: '809051' | |
selfLink: >- | |
/apis/org.eclipse.che/v1/namespaces/crw2-upstream-tests-pipeline/checlusters/codeready-workspaces |
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: org.eclipse.che/v1 | |
kind: CheCluster | |
metadata: | |
name: codeready-workspaces | |
spec: | |
server: | |
airGapContainerRegistryHostname: 'image-registry.openshift-image-registry.svc:5000' | |
airGapContainerRegistryOrganization: 'openshift' | |
# server image used in Che deployment | |
cheImage: '' |
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: org.eclipse.che/v1 | |
kind: CheCluster | |
metadata: | |
name: eclipse-che | |
spec: | |
server: | |
# server image used in Che deployment | |
cheImage: 'quay.io/crw/server-rhel8' | |
# tag of an image used in Che deployment | |
cheImageTag: '2.0-377' |
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
#!/bin/bash | |
CLUSTER_NAME=<cluster_name - for example 'rhopp-qa'> | |
HOSTED_ZONE_ID=Z3URY6TWQ91KVV | |
# aws route53 list-resource-record-sets --hosted-zone-id ${HOSTED_ZONE_ID} --output json > allRecordSets.json | |
jq ".ResourceRecordSets[] | select(.Name | contains(\"api.${CLUSTER_NAME}.devcluster.openshift.com\"))" allRecordSets.json > apiRecordSet.json | |
jq ".ResourceRecordSets[] | select(.Name | contains(\"\\\\052.apps.${CLUSTER_NAME}.devcluster.openshift.com\"))" allRecordSets.json > appsRecordSet.json |