You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@solr.apache.org by Houston Putman <ho...@apache.org> on 2021/04/23 21:26:13 UTC

[Operator] [VOTE] Release the Solr Operator v0.3.0 RC3

Please vote for release candidate 3 for the Solr Operator v0.3.0

The artifacts can be downloaded from:
https://dist.apache.org/repos/dist/dev/solr/solr-operator/solr-operator-v0.3.0-RC3-rev67e568cd4302f72070879c18f7d666be3a56cb03

You can run the full smoke tester, with instructions below.
However, it is also encouraged to go and use the artifacts yourself in a
test Kubernetes cluster.
The smoke tester does not require you to download or install the RC
artifacts before running.
If you plan on just running the smoke tests, then ignore all other
instructions.

The artifacts are layed out in the following way:
  * solr-operator-v0.3.0.tgz - Contains the source release
  * crds/ - Contains the CRD files
  * helm/ - Contains the Helm release packages

The RC Docker image can be found at:
  apache/solr-operator:v0.3.0-rc3

The RC Helm repo can be added with:
  helm repo add solr-operator-rc
https://dist.apache.org/repos/dist/dev/solr/solr-operator/solr-operator-v0.3.0-RC3-rev67e568cd4302f72070879c18f7d666be3a56cb03/helm-charts

You can install the RC Solr Operator and Solr CRDs with:
  curl -sL0 "https://dist.apache.org/repos/dist/release/solr/KEYS" | gpg
--import --quiet
  # This will export your public keys into a format that helm can
understand.
  # Skip verification by removing "--verify" in the helm command below.
  if ! (gpg --no-default-keyring --keyring=~/.gnupg/pubring.gpg --list-keys
"98F3F6EC"); then gpg --export >~/.gnupg/pubring.gpg; fi
  kubectl create -f
https://dist.apache.org/repos/dist/dev/solr/solr-operator/solr-operator-v0.3.0-RC3-rev67e568cd4302f72070879c18f7d666be3a56cb03/crds/all-with-dependencies.yaml
|| \
    kubectl replace -f
https://dist.apache.org/repos/dist/dev/solr/solr-operator/solr-operator-v0.3.0-RC3-rev67e568cd4302f72070879c18f7d666be3a56cb03/crds/all-with-dependencies.yaml
  helm install --verify solr-operator solr-operator-rc/solr-operator --set
image.tag=v0.3.0-rc3

You can run the full smoke tester directly with this command: (First
checkout the release-0.3 branch of the solr-operator)

./hack/release/smoke_test/smoke_test.sh -v "v0.3.0" -s "67e568c" -i
"apache/solr-operator:v0.3.0-rc3" -g "98F3F6EC" \
    -l '
https://dist.apache.org/repos/dist/dev/solr/solr-operator/solr-operator-v0.3.0-RC3-rev67e568cd4302f72070879c18f7d666be3a56cb03
'

Make sure you have the following installed before running the smoke test:
  - Docker (Give it enough memory and CPU to run ~12 containers, 3 of which
are Solr nodes)
  - Go 1.16
  - Kubectl
  - GnuPG
  - Helm v3.4.0+
  - Kustomize (v4.0.0+) This will be installed for you, but NOT upgraded if
a lower version is already installed.
  - yq
  - jq
  - coreutils (if using Mac OS)

The vote will be open for at least 72 hours i.e. until 2021-04-28 22:00
UTC. (Extended due to the weekend)

[ ] +1  approve
[ ] +0  no opinion
[ ] -1  disapprove (and reason why)

Here is my +1

Re: [Operator] [VOTE] Release the Solr Operator v0.3.0 RC3

Posted by Houston Putman <ho...@apache.org>.
Please ignore this email. The correct RC3 email will be following shortly.

On Fri, Apr 23, 2021 at 4:26 PM Houston Putman <ho...@apache.org> wrote:

> Please vote for release candidate 3 for the Solr Operator v0.3.0
>
> The artifacts can be downloaded from:
>
> https://dist.apache.org/repos/dist/dev/solr/solr-operator/solr-operator-v0.3.0-RC3-rev67e568cd4302f72070879c18f7d666be3a56cb03
>
> You can run the full smoke tester, with instructions below.
> However, it is also encouraged to go and use the artifacts yourself in a
> test Kubernetes cluster.
> The smoke tester does not require you to download or install the RC
> artifacts before running.
> If you plan on just running the smoke tests, then ignore all other
> instructions.
>
> The artifacts are layed out in the following way:
>   * solr-operator-v0.3.0.tgz - Contains the source release
>   * crds/ - Contains the CRD files
>   * helm/ - Contains the Helm release packages
>
> The RC Docker image can be found at:
>   apache/solr-operator:v0.3.0-rc3
>
> The RC Helm repo can be added with:
>   helm repo add solr-operator-rc
> https://dist.apache.org/repos/dist/dev/solr/solr-operator/solr-operator-v0.3.0-RC3-rev67e568cd4302f72070879c18f7d666be3a56cb03/helm-charts
>
> You can install the RC Solr Operator and Solr CRDs with:
>   curl -sL0 "https://dist.apache.org/repos/dist/release/solr/KEYS" | gpg
> --import --quiet
>   # This will export your public keys into a format that helm can
> understand.
>   # Skip verification by removing "--verify" in the helm command below.
>   if ! (gpg --no-default-keyring --keyring=~/.gnupg/pubring.gpg
> --list-keys "98F3F6EC"); then gpg --export >~/.gnupg/pubring.gpg; fi
>   kubectl create -f
> https://dist.apache.org/repos/dist/dev/solr/solr-operator/solr-operator-v0.3.0-RC3-rev67e568cd4302f72070879c18f7d666be3a56cb03/crds/all-with-dependencies.yaml
> || \
>     kubectl replace -f
> https://dist.apache.org/repos/dist/dev/solr/solr-operator/solr-operator-v0.3.0-RC3-rev67e568cd4302f72070879c18f7d666be3a56cb03/crds/all-with-dependencies.yaml
>   helm install --verify solr-operator solr-operator-rc/solr-operator --set
> image.tag=v0.3.0-rc3
>
> You can run the full smoke tester directly with this command: (First
> checkout the release-0.3 branch of the solr-operator)
>
> ./hack/release/smoke_test/smoke_test.sh -v "v0.3.0" -s "67e568c" -i
> "apache/solr-operator:v0.3.0-rc3" -g "98F3F6EC" \
>     -l '
> https://dist.apache.org/repos/dist/dev/solr/solr-operator/solr-operator-v0.3.0-RC3-rev67e568cd4302f72070879c18f7d666be3a56cb03
> '
>
> Make sure you have the following installed before running the smoke test:
>   - Docker (Give it enough memory and CPU to run ~12 containers, 3 of
> which are Solr nodes)
>   - Go 1.16
>   - Kubectl
>   - GnuPG
>   - Helm v3.4.0+
>   - Kustomize (v4.0.0+) This will be installed for you, but NOT upgraded
> if a lower version is already installed.
>   - yq
>   - jq
>   - coreutils (if using Mac OS)
>
> The vote will be open for at least 72 hours i.e. until 2021-04-28 22:00
> UTC. (Extended due to the weekend)
>
> [ ] +1  approve
> [ ] +0  no opinion
> [ ] -1  disapprove (and reason why)
>
> Here is my +1
>