Skip to content

Commit

Permalink
v2: Turn off alloy crds (#969)
Browse files Browse the repository at this point in the history
Signed-off-by: Pete Wall <[email protected]>
  • Loading branch information
petewall authored Dec 3, 2024
1 parent 9cf0e4c commit 35cb2cd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
16 changes: 16 additions & 0 deletions charts/k8s-monitoring/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,14 @@
}
}
},
"crds": {
"type": "object",
"properties": {
"create": {
"type": "boolean"
}
}
},
"enabled": {
"type": "boolean"
},
Expand Down Expand Up @@ -591,6 +599,14 @@
}
}
},
"crds": {
"type": "object",
"properties": {
"create": {
"type": "boolean"
}
}
},
"enabled": {
"type": "boolean"
},
Expand Down
8 changes: 8 additions & 0 deletions charts/k8s-monitoring/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,10 @@ alloy-logs:
nodeSelector:
kubernetes.io/os: linux

# Skip installation of the Grafana Alloy CRDs, since we don't use them in this chart
# @ignored
crds: {create: false}

# An Alloy instance for opening receivers to collect application data.
alloy-receiver:
# -- Deploy the Alloy instance for opening receivers to collect application data.
Expand Down Expand Up @@ -680,6 +684,10 @@ alloy-receiver:
nodeSelector:
kubernetes.io/os: linux

# Skip installation of the Grafana Alloy CRDs, since we don't use them in this chart
# @ignored
crds: {create: false}

# An Alloy instance for gathering profiles.
alloy-profiles:
# -- Deploy the Alloy instance for gathering profiles.
Expand Down

0 comments on commit 35cb2cd

Please sign in to comment.