Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/portswigger/enterprise-helm-charts
Helm charts for BSEE Kubernetes installation.
https://github.com/portswigger/enterprise-helm-charts
burp enterprise helm-chart kubernetes
Last synced: about 2 months ago
JSON representation
Helm charts for BSEE Kubernetes installation.
- Host: GitHub
- URL: https://github.com/portswigger/enterprise-helm-charts
- Owner: PortSwigger
- License: apache-2.0
- Created: 2023-11-07T17:05:54.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-31T13:56:15.000Z (about 2 months ago)
- Last Synced: 2024-10-31T14:39:09.643Z (about 2 months ago)
- Topics: burp, enterprise, helm-chart, kubernetes
- Language: Smarty
- Homepage:
- Size: 43 KB
- Stars: 3
- Watchers: 1
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# enterprise-helm-charts
Helm charts for BSEE Kubernetes installation.
Currently only contains the standard kubernetes BSEE installation helm chart.# Usage
The command ```helm repo add bsee https://portswigger.github.io/enterprise-helm-charts/``` can be used to add the repo.
The helm chart in this repository can then be installed using the following command:
```shell
helm install ${RELEASE_NAME} bsee/burp-suite-enterprise-edition \
--set database.url=${DATABASE_URL} \
--set database.enterpriseServerUsername=${DATABASE_ENTERPRISE_SERVER_USERNAME} \
--set database.enterpriseServerConnectionUsername=${DATABASE_ENTERPRISE_SERVER_CONNECTION_USERNAME} \
--set database.enterpriseServerPassword=${DATABASE_ENTERPRISE_SERVER_PASSWORD} \
--set database.scanningResourceUsername=${DATABASE_SCANNING_RESOURCE_USERNAME} \
--set database.scanningResourceConnectionUsername=${DATABASE_SCANNING_RESOURCE_CONNECTION_USERNAME}
--set database.scanningResourcePassword=${DATABASE_SCANNING_RESOURCE_PASSWORD}
```Where ```enterpriseServerConnectionUsername``` and ```scanningResourceConnectionUsername``` are optional.
More information about custom values can be found in [getting started](https://portswigger.net/burp/documentation/enterprise/getting-started/kubernetes/new-deployment/install-app#providing-custom-values-for-the-helm-chart) documentation.