Skip to content

Commit

Permalink
Merge branch 'configure-schema' into helm-template-options
Browse files Browse the repository at this point in the history
  • Loading branch information
sbeaulie committed Sep 26, 2024
2 parents ad04999 + 96c9ee9 commit 4c52372
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release Charts

on:
push:
branches:
- main

jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: "./"
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
2 changes: 1 addition & 1 deletion lacework-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ maintainers:
- email: [email protected]
name: lacework-support
name: lacework-agent
version: 7.1.2
version: 7.5.0
12 changes: 12 additions & 0 deletions lacework-agent/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,18 @@
"hostNetworkAccess": {
"type": "boolean",
"description": "Enable host network access to the cluster collector pod"
},
"createRoleBinding": {
"type": "boolean",
"description": "Enable creation of the role binding"
},
"createRole": {
"type": "boolean",
"description": "Enable creation of the role"
},
"createServiceAccount": {
"type": "boolean",
"description": "Enable creation of the service account"
}
},
"additionalProperties": false
Expand Down

0 comments on commit 4c52372

Please sign in to comment.