UNCLASSIFIED

Commit cf2b8ff5 authored by Micah Nagel's avatar Micah Nagel 💰
Browse files

docs: update docs

parent dcdde4a9
Pipeline #157781 passed with stages
in 3 minutes and 9 seconds
......@@ -52,7 +52,7 @@ stringData:
values.yaml: |-
addons:
anchore:
adminPassword: ""
adminPassword: "my-super-secret-password"
```
## Adding Enterprise Components
......@@ -114,7 +114,7 @@ stringData:
addons:
anchore:
postgresql:
enabled: true # This enables the built in postgres
external: false
user: "username"
password: "password"
```
......@@ -129,12 +129,13 @@ stringData:
addons:
anchore:
postgresql:
enabled: false # This disables the built in postgres
endpoint: "host:port" # This is your (already existing) external postgres instance
external: true
user: "username"
password: "password"
host: "postgres.mydomain.com"
port: "5432"
mainDB: "databaseName"
enterpriseFeedsDB: "databaseName" # Only used if you want the enterprise feeds database
feedsDB: "databaseName" # Only used for enterprise deployments
```
If you plan to use the UI:
......@@ -146,8 +147,8 @@ stringData:
values.yaml: |-
addons:
anchore:
enterpriseUiRedis:
enabled: true # Enable the built in redis
redis:
external: false
password: "password"
```
......@@ -158,10 +159,11 @@ stringData:
values.yaml: |-
addons:
anchore:
enterpriseUiRedis:
enabled: true # Enable the built in redis
redis:
external: true
password: "password"
endpoint: "host:port" # This is your already existing external redis instance
host: "redis.mydomain.com"
port: "6379"
```
### Enable SSO
......
......@@ -32,10 +32,11 @@ addons:
sso:
enabled: true
clientId: "platform1_a8604cc9-f5e9-4656-802d-d05624370245_bb8-anchore" # Specific client ID for Anchore
samlDescriptorUrl: "https://login.dso.mil/auth/realms/baby-yoda/protocol/saml/descriptor" # SAML Descriptor URL for the keycloak instance
roleAttribute: "" # Optional, set a Keycloak attribute for role mapping - must exist and contain Anchore roles, i.e. read-write, full-control, etc
```
Also make sure you have set up the global oidc settings (realm and host).
For more details on the values being set here, view the "Anchore SSO Reference" below.
NOTE: Local development makes use of login.dsop.io and the necessary values are committed in the values.yaml files in the repo and visible above.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment