Skip to content

Commit

Permalink
Fix memory setting in smoke test. Pin solr to 9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
HoustonPutman committed Aug 30, 2023
1 parent 0443cb3 commit 277a86f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions hack/release/smoke_test/test_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ if [[ -z "${KUBERNETES_VERSION:-}" ]]; then
KUBERNETES_VERSION="v1.26.6"
fi
if [[ -z "${SOLR_IMAGE:-}" ]]; then
SOLR_IMAGE="${SOLR_VERSION:-9}"
SOLR_IMAGE="${SOLR_VERSION:-9.3}"
fi
if [[ "${SOLR_IMAGE}" != *":"* ]]; then
SOLR_IMAGE="solr:${SOLR_IMAGE}"
Expand Down Expand Up @@ -173,10 +173,10 @@ helm install --kube-context "${KUBE_CONTEXT}" ${VERIFY_OR_NOT} example "${SOLR_H
--set replicas=3 \
--set image.repository="${SOLR_IMAGE%%:*}" \
--set-string image.tag="${SOLR_IMAGE##*:}" \
--set solrOptions.javaMemory="-Xms1g -Xmx3g" \
--set podOptions.resources.limits.memory="1G" \
--set podOptions.resources.requests.cpu="300m" \
--set podOptions.resources.requests.memory="512Mi" \
--set solrOptions.javaMemory="-Xms1g -Xmx1g" \
--set podOptions.resources.limits.memory="1500Mi" \
--set podOptions.resources.requests.cpu="1" \
--set podOptions.resources.requests.memory="1500Mi" \
--set zk.provided.persistence.spec.resources.requests.storage="5Gi" \
--set zk.provided.replicas=1 \
--set "backupRepositories[0].name=local" \
Expand Down

0 comments on commit 277a86f

Please sign in to comment.