Skip to content

Commit f5dc5f8

Browse files
authored
Remove unused chectl flag (#1474)
* Set podwaittimeout and podreadytimeout * Add --skip-devworkspace-operator since DWO is already installed * Remove unused flag Signed-off-by: David Kwon <[email protected]>
1 parent 541a38a commit f5dc5f8

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.ci/oci-devworkspace-happy-path.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@ deployChe() {
4242
-p openshift \
4343
--batch \
4444
--telemetry=off \
45-
--installer=operator \
46-
--workspace-engine=dev-workspace
45+
--skip-devworkspace-operator \
46+
--k8spodwaittimeout=6000000 \
47+
--k8spodreadytimeout=6000000
4748
}
4849

4950
deployDWO

.ci/oci.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ RUN sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo && sed
2323
RUN yum install --assumeyes -d1 python3-pip nodejs gettext jq && \
2424
pip3 install --upgrade pip && \
2525
pip3 install --ignore-installed --upgrade setuptools && \
26-
# Install yq
27-
pip3 install yq && \
26+
# Install yq and jq
27+
pip3 install yq jq && \
2828
# Install kubectl
2929
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && \
3030
chmod +x ./kubectl && \

0 commit comments

Comments
 (0)