diff --git a/docusaurus-docs/conda-store/how-tos/install-kubernetes.md b/docusaurus-docs/conda-store/how-tos/install-kubernetes.md index 6686fe126..a43bb7029 100644 --- a/docusaurus-docs/conda-store/how-tos/install-kubernetes.md +++ b/docusaurus-docs/conda-store/how-tos/install-kubernetes.md @@ -51,6 +51,12 @@ kubectl port-forward service/conda-store-server 8080:8080 Then visit via your web browser [http://localhost:8080](http://localhost:8080) +To enable viewing logs, make sure to also port forward the minio service + +```shell +kubectl port-forward service/minio 30900:9000 +``` + For additional configuration options see the [reference guide](../references/configuration-options.md) A good test that conda-store is functioning properly is to apply the diff --git a/examples/kubernetes/conda-store-server.yaml b/examples/kubernetes/conda-store-server.yaml index 41482ecb5..adb385053 100644 --- a/examples/kubernetes/conda-store-server.yaml +++ b/examples/kubernetes/conda-store-server.yaml @@ -32,7 +32,7 @@ spec: spec: containers: - name: conda-store-server - image: quansight/conda-store-server:v0.4.5 + image: quansight/conda-store-server:2024.10.1 args: - "conda-store-server" - "--config" diff --git a/examples/kubernetes/conda-store-worker.yaml b/examples/kubernetes/conda-store-worker.yaml index 06906d758..424a8db98 100644 --- a/examples/kubernetes/conda-store-worker.yaml +++ b/examples/kubernetes/conda-store-worker.yaml @@ -31,7 +31,7 @@ spec: spec: containers: - name: conda-store-server - image: quansight/conda-store-server:v0.4.5 + image: quansight/conda-store-server:2024.10.1 args: - "conda-store-worker" - "--config"