chore: Update from ubi8/go-toolset:1.19.9-2 to ubi8/go-toolset:1.19.10-3 (#1715)
* chore: Update from ubi8/go-toolset:1.19.9-2 to ubi8/go-toolset:1.19.10-3 Signed-off-by: Nick Boldt <nboldt@redhat.com> * chore: Update from ubi8-minimal:8.8-860 to ubi8-minimal:8.8-1014 Signed-off-by: Nick Boldt <nboldt@redhat.com> * fix: start workspaces on minikube cluster Signed-off-by: Anatolii Bazko <abazko@redhat.com> --------- Signed-off-by: Nick Boldt <nboldt@redhat.com> Signed-off-by: Anatolii Bazko <abazko@redhat.com> Co-authored-by: Nick Boldt <nboldt@redhat.com> Co-authored-by: Anatolii Bazko <abazko@redhat.com>pull/1717/head
parent
770b670085
commit
533cc2905a
|
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
|
||||
# https://registry.access.redhat.com/ubi8/go-toolset
|
||||
FROM registry.access.redhat.com/ubi8/go-toolset:1.19.9-2 as builder
|
||||
FROM registry.access.redhat.com/ubi8/go-toolset:1.19.10-3 as builder
|
||||
ENV GOPATH=/go/
|
||||
ARG DEV_HEADER_REWRITE_TRAEFIK_PLUGIN="main"
|
||||
ARG SKIP_TESTS="false"
|
||||
|
|
@ -45,7 +45,7 @@ RUN export ARCH="$(uname -m)" && if [[ ${ARCH} == "x86_64" ]]; then export ARCH=
|
|||
CGO_ENABLED=0 GOOS=linux GOARCH=${ARCH} GO111MODULE=on go build -mod=vendor -a -o che-operator main.go
|
||||
|
||||
# https://registry.access.redhat.com/ubi8-minimal
|
||||
FROM registry.access.redhat.com/ubi8-minimal:8.8-860
|
||||
FROM registry.access.redhat.com/ubi8-minimal:8.8-1014
|
||||
|
||||
COPY --from=builder /tmp/header-rewrite-traefik-plugin /tmp/header-rewrite-traefik-plugin
|
||||
COPY --from=builder /che-operator/che-operator /manager
|
||||
|
|
|
|||
|
|
@ -220,6 +220,7 @@ spec:
|
|||
container:
|
||||
image: quay.io/devfile/universal-developer-image:ubi8-latest
|
||||
cpuLimit: 100m
|
||||
cpuRequest: 100m
|
||||
EOF
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,17 @@
|
|||
#
|
||||
|
||||
apiVersion: org.eclipse.che/v2
|
||||
metadata:
|
||||
annotations:
|
||||
che.eclipse.org/checluster-defaults-cleanup: '{"spec.components.pluginRegistry.openVSXURL":"true"}'
|
||||
spec:
|
||||
devEnvironments:
|
||||
gatewayContainer:
|
||||
resources:
|
||||
request:
|
||||
cpu: '20m'
|
||||
limits:
|
||||
cpu: '20m'
|
||||
components:
|
||||
pluginRegistry:
|
||||
openVSXURL: https://open-vsx.org
|
||||
|
|
@ -35,9 +45,9 @@ spec:
|
|||
containers:
|
||||
- resources:
|
||||
limits:
|
||||
cpu: '400m'
|
||||
cpu: '300m'
|
||||
request:
|
||||
cpu: '400m'
|
||||
cpu: '300m'
|
||||
dashboard:
|
||||
deployment:
|
||||
containers:
|
||||
|
|
|
|||
Loading…
Reference in New Issue