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 | |
## This script expects oc to be logged in into proper cluster, where you want the root cert to be imported from | |
oc get secret router-ca -n openshift-ingress-operator -o jsonpath="{.data.tls\.crt}" | base64 -d > ca.crt | |
certutil -d sql:$HOME/.pki/nssdb -A -t CT,C,C -n $(openssl x509 -in ca.crt -text |grep Issuer| grep -o 'ingress-operator@.*') -i ca.crt | |
rm ca.crt |
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: java-eap-maven- | |
projects: | |
- | |
name: kitchensink-example | |
source: | |
type: git | |
location: "https://github.com/che-samples/kitchensink-example" |
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 | |
QUAY_ACCESS_TOKEN=<PUT YOUR TOKEN HERE> | |
for image in operator-rhel8 server-rhel8 devfileregistry-rhel8 pluginregistry-rhel8 pluginbrokerinit-rhel8 pluginbroker-rhel8 jwtproxy-rhel8 | |
do | |
echo ${image} | |
curl -X GET -s -H "Authorization: Bearer $QUAY_ACCESS_TOKEN" https://quay.io/api/v1/repository/crw/${image}/image/ | jq --raw-output ".images[].tags[] |select(. != null)" |sort -Vr | head -n 3 | |
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
# | |
# Copyright (c) 2012-2019 Red Hat, Inc. | |
# This program and the accompanying materials are made | |
# available under the terms of the Eclipse Public License 2.0 | |
# which is available at https://www.eclipse.org/legal/epl-2.0/ | |
# | |
# SPDX-License-Identifier: EPL-2.0 | |
# | |
# Contributors: |
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-369' |
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
[ | |
{ | |
"id": "redhat/java/latest" | |
} | |
] |
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-365' |
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' |
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
0s Normal ProvisioningSucceeded persistentvolumeclaim/claim-che-workspace-workspacef4s7dk7gidd1px1z Successfully provisioned volume pvc-e3747ad4-f0ad-11e9-a904-0e701ef69c4e using kubernetes.io/aws-ebs | |
0s Warning FailedScheduling pod/mkdir-workspacef4s7dk7gidd1px1z Binding rejected: Operation cannot be fulfilled on pods/binding "mkdir-workspacef4s7dk7gidd1px1z": pod mkdir-workspacef4s7dk7gidd1px1z is already assigned to node "ip-10-0-139-54.ec2.internal" | |
0s Normal Scheduled pod/mkdir-workspacef4s7dk7gidd1px1z Successfully assigned load-test-che/mkdir-workspacef4s7dk7gidd1px1z to ip-10-0-139-54.ec2.internal | |
0s Warning FailedScheduling pod/mkdir-workspacef4s7dk7gidd1px1z Binding rejected: Operation cannot be fulfilled on pods/binding "mkdir-workspacef4s7dk7gidd1px1z": pod mkdir-workspacef4s7dk7gidd1px1z is already assigned to node "ip-10-0-139-54.ec2.internal" | |
0s Warning FailedAttachVolume pod/mkdir-workspacef4s7dk7gidd1px1z AttachVolume.Attach failed for volume "pvc- |
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: golang- | |
projects: | |
- | |
name: example | |
source: | |
type: git | |
location: https://github.com/RedHatOfficial/GoCourse.git |