Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump k8 example version #960

Merged
merged 2 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docusaurus-docs/conda-store/how-tos/install-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/conda-store-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/conda-store-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading