Skip to content

Instantly share code, notes, and snippets.

View rhopp's full-sized avatar

Radim Hopp rhopp

  • Red Hat
View GitHub Profile

P1

Tasks can't be run from the workspace view #14770
Apply ability to select render for terminal #14772
Git clone fails but success message is shown #14775

P2

Project delete button in dashboard is invisible #14773
Add documentation about the camel plug-in in Che docs #14778
Provide tests for Camel Che stack and their plugins #14780

---
apiVersion: 1.0.0
metadata:
generateName: java-maven-
projects:
-
name: console-java-simple
source:
type: git
location: "https://github.com/che-samples/console-java-simple.git"
---
apiVersion: 1.0.0
metadata:
generateName: golang-
projects:
-
name: example
source:
type: git
location: https://github.com/RedHatOfficial/GoCourse.git
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-
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'
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'
[
{
"id": "redhat/java/latest"
}
]
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'
#
# 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:
@rhopp
rhopp / getLatestImages.sh
Created October 29, 2019 11:42
Gets latest images (highest version numbers) for some CRW images
#!/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