CRW-280 use registry.redhat.io (authenticated) instead of registry.access.redhat.com (non-auth'd); also new server image is registry.redhat.io/codeready-workspaces/server-rhel8, not just /server

Change-Id: I247e6db78cc71d53e385e5ef830234580b3b34bd
Signed-off-by: nickboldt <nboldt@redhat.com>
pull/26/head
nickboldt 2019-05-15 13:55:03 -04:00
parent 5d6b75ff13
commit 7572b31fc2
6 changed files with 6 additions and 6 deletions

View File

@ -127,7 +127,7 @@ OOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o $GOPATH/src/github.com/eclipse/
Or you can build in a container:
```
docker run -ti -v /tmp:/tmp -v ${OPERATOR_REPO}:/opt/app-root/src/go/src/github.com/eclipse/che-operator registry.access.redhat.com/devtools/go-toolset-rhel7:1.11.5-3 sh -c "OOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o /tmp/run-tests /opt/app-root/src/go/src/github.com/eclipse/che-operator/e2e/*.go"
docker run -ti -v /tmp:/tmp -v ${OPERATOR_REPO}:/opt/app-root/src/go/src/github.com/eclipse/che-operator registry.redhat.io/devtools/go-toolset-rhel7:1.11.5-3 sh -c "OOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o /tmp/run-tests /opt/app-root/src/go/src/github.com/eclipse/che-operator/e2e/*.go"
cp /tmp/run-tests ${OPERATOR_REPO}/run-tests
```

View File

@ -58,7 +58,7 @@ spec:
chePostgresPassword: ''
# Postgres database name that Che server uses to connect to. Defaults to dbche
chePostgresDb: ''
# Postgres deployment in format image:tag. Defaults to registry.access.redhat.com/rhscl/postgresql-96-rhel7 (see pkg/deploy/defaults.go for latest tag)
# Postgres deployment in format image:tag. Defaults to registry.redhat.io/rhscl/postgresql-96-rhel7 (see pkg/deploy/defaults.go for latest tag)
postgresImage: ''
storage:
# persistent volume claim strategy for Che server. Can be common (all workspaces PVCs in one volume),

View File

@ -81,7 +81,7 @@ type CheClusterSpecDB struct {
ChePostgresPassword string `json:"chePostgresPassword"`
// ChePostgresDb is Postgres database name that Che server uses to connect to. Defaults to dbche
ChePostgresDb string `json:"chePostgresDb"`
// PostgresImage is an image used in Postgres deployment in format image:tag. Defaults to registry.access.redhat.com/rhscl/postgresql-96-rhel7 (see pkg/deploy/defaults.go for latest tag)
// PostgresImage is an image used in Postgres deployment in format image:tag. Defaults to registry.redhat.io/rhscl/postgresql-96-rhel7 (see pkg/deploy/defaults.go for latest tag)
PostgresImage string `json:"postgresImage"`
}

View File

@ -14,7 +14,7 @@ package deploy
const (
DefaultCheServerImageRepo = "eclipse/che-server"
DefaultCodeReadyServerImageRepo = "registry.access.redhat.com/codeready-workspaces/server"
DefaultCodeReadyServerImageRepo = "registry.redhat.io/codeready-workspaces/server-rhel8"
DefaultCheServerImageTag = "7.0.0-beta-4.0"
DefaultCodeReadyServerImageTag = "1.2"
DefaultCheFlavor = "che"

View File

@ -89,7 +89,7 @@ type ImageSignature struct {
// the information available.
// A human readable string representing image's identity. It could be a product name and version, or an
// image pull spec (e.g. "registry.access.redhat.com/rhel7/rhel:7.2").
// image pull spec (e.g. "registry.redhat.io/rhel7/rhel:7.2").
ImageIdentity string `json:"imageIdentity,omitempty" protobuf:"bytes,5,opt,name=imageIdentity"`
// Contains claims from the signature.
SignedClaims map[string]string `json:"signedClaims,omitempty" protobuf:"bytes,6,rep,name=signedClaims"`

View File

@ -102,7 +102,7 @@ var map_ImageSignature = map[string]string{
"type": "Required: Describes a type of stored blob.",
"content": "Required: An opaque binary string which is an image's signature.",
"conditions": "Conditions represent the latest available observations of a signature's current state.",
"imageIdentity": "A human readable string representing image's identity. It could be a product name and version, or an image pull spec (e.g. \"registry.access.redhat.com/rhel7/rhel:7.2\").",
"imageIdentity": "A human readable string representing image's identity. It could be a product name and version, or an image pull spec (e.g. \"registry.redhat.io/rhel7/rhel:7.2\").",
"signedClaims": "Contains claims from the signature.",
"created": "If specified, it is the time of signature's creation.",
"issuedBy": "If specified, it holds information about an issuer of signing certificate or key (a person or entity who signed the signing certificate or key).",