Skip to content

Commit d451e3b

Browse files
Merge pull request #161 from blacklanternsecurity/fix-publishing-bugs
Publish helm chart to separate repo
2 parents 2d63c2e + 3bbe1cb commit d451e3b

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/docker-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,4 +190,4 @@ jobs:
190190
run: echo "${{ secrets.DOCKER_TOKEN }}" | helm registry login registry-1.docker.io -u blacklanternsecurity --password-stdin
191191

192192
- name: Push Helm chart to Docker Hub
193-
run: helm push bbot-server-*.tgz oci://registry-1.docker.io/blacklanternsecurity
193+
run: helm push bbot-server-helm-*.tgz oci://registry-1.docker.io/blacklanternsecurity

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,21 +75,21 @@ BBOT Server can be deployed to Kubernetes using its official Helm chart. The cha
7575
helm repo add blacklanternsecurity https://blacklanternsecurity.github.io/bbot-server
7676

7777
# Install
78-
helm install bbot blacklanternsecurity/bbot-server
78+
helm install bbot blacklanternsecurity/bbot-server-helm
7979
```
8080

8181
Or install directly from the OCI registry:
8282

8383
```bash
84-
helm install bbot oci://registry-1.docker.io/blacklanternsecurity/bbot-server
84+
helm install bbot oci://registry-1.docker.io/blacklanternsecurity/bbot-server-helm
8585
```
8686

8787
### Configuration
8888

8989
Key values can be overridden with `--set` or a custom values file:
9090

9191
```bash
92-
helm install bbot blacklanternsecurity/bbot-server \
92+
helm install bbot blacklanternsecurity/bbot-server-helm \
9393
--set ingress.enabled=true \
9494
--set ingress.hosts[0].host=bbot.example.com \
9595
--set ingress.hosts[0].paths[0].path=/ \
@@ -121,7 +121,7 @@ secrets:
121121
```
122122
123123
```bash
124-
helm install bbot blacklanternsecurity/bbot-server -f custom-values.yaml
124+
helm install bbot blacklanternsecurity/bbot-server-helm -f custom-values.yaml
125125
```
126126

127127
### Retrieving the API Key
@@ -136,7 +136,7 @@ kubectl get secret bbot-api-key -o jsonpath='{.data.api-key}' | base64 -d
136136

137137
```bash
138138
helm repo update
139-
helm upgrade bbot blacklanternsecurity/bbot-server
139+
helm upgrade bbot blacklanternsecurity/bbot-server-helm
140140
```
141141

142142
## Interacting with BBOT Server Remotely (Multiplayer)

helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
name: bbot-server
2+
name: bbot-server-helm
33
description: Helm chart for BBOT Server (API + Worker)
44
type: application
55
version: 0.1.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "bbot-server"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = ""
55
authors = [{name = "TheTechromancer"}]
66
license = "AGPL-3.0"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)