-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue when compiling kube-prometheus-stack #983
Comments
Hey @jyepesr1 |
Hi @MatteoVoges, The most relevant issue at least with kube-prometheus-stack is this empty map, we haven't tested other components since we had to roll back to v0.30.0, we are using the following configuration:
- name: helm3-template-prometheus
input_type: kadet
output_path: ${prometheus:manifests_output_location}
input_paths:
- kadet_functions/helm3_template
input_params:
chart_location: shared/${prometheus:chart_name}/${prometheus:chart_version}
clean_manifests: false
helm_values_files:
- ${prometheus:helm_values_files_location}/common.yml
- ${prometheus:helm_values_files_location}/grafana.yml
helm_values: ${prometheus:helm_values}
helm_params:
- --namespace ${prometheus:namespace}
- --name-template ${prometheus:chart_name}
- --api-versions 1.22.0
- --include-crds
- name: remove-prometheus-rules
input_type: kadet
output_path: .
input_paths:
- kadet_functions/remove_prometheus_rules
input_params:
alerting_rules_to_remove:
- KubePersistentVolumeFillingUp # noisy alert that we will change in the future
- TargetDown # Too broad of an alert. We don't control all pods in the cluster
chart_compiled_dir: ${prometheus:manifests_output_location}/${prometheus:chart_name} We realized the issue is happening in the Kadet function we use to delete some Prometheus rules. This script works as expected as I mentioned in the 0.30.0, but in this new version produces this output. Not sure if is related as you mentioned to the PyYaml version. This is the script content import os
from kapitan.inputs import kadet
import yaml
import sys
curr_dir = os.path.dirname(__file__)
sys.path.append(os.path.abspath(os.path.join(curr_dir, "..", "common")))
import common
inventory = kadet.inventory()
def is_prometheus_rule(resource):
if resource.root.kind == "PrometheusRule":
return True
return False
def remove_alerting_rule_if_present(resource, alerting_rules):
for g_idx, group in enumerate(resource.root.spec.groups):
for r_idx, rule in enumerate(group.rules):
if rule.alert in alerting_rules:
resource.root.spec.groups[g_idx].rules.pop(r_idx)
return resource
def main(input_params):
if "chart_compiled_dir" in input_params:
chart_compiled_dir = input_params.get("chart_compiled_dir")
else:
raise ValueError("'chart_compiled_dir' key not found in 'input_params'")
if "alerting_rules_to_remove" in input_params:
alerting_rules_to_remove = input_params.get("alerting_rules_to_remove")
else:
raise ValueError(
"'alerting_rules_to_remove' key not found in 'alerting_rules_to_remove'"
)
# get path where files have been compiled on this run
inventory.parameters.kapitan.vars.target
compile_path = input_params.get("compile_path")
all_objects = {}
prometheus_sub_chart = os.path.join(chart_compiled_dir, "templates", "prometheus")
manifest_files = common.get_compiled_manifest_files_for_component(
compile_path, prometheus_sub_chart
)
for file in manifest_files:
file_name_kadet_format = common.format_file_name_for_kadet(compile_path, file)
with open(file) as fp:
yaml_stream = yaml.safe_load_all(fp)
objects_for_file = []
for obj in yaml_stream:
o = kadet.BaseObj.from_dict(obj)
# ensure yaml object is valid k8s resource
# cleans up any cruft from helm template
if common.kadet_object_has_kind(o) is not True:
continue
if is_prometheus_rule(o):
o = remove_alerting_rule_if_present(o, alerting_rules_to_remove)
objects_for_file.append(o)
all_objects.update({file_name_kadet_format: objects_for_file})
fp.close()
output = kadet.BaseObj()
for file_name, obj in all_objects.items():
# TODO: output the object with the naming style we want
# kind = obj.root.kind
# name = obj.root.metadata.name
output.root[file_name] = obj
return output |
This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
Describe the bug/feature
In the latest release 0.31.0, we have an issue when building kube-prometheus-stack where the alert rules are created with a wrong syntax
Expected behavior
When we run on version 0.30 we got this correct output
Now after upgrading to 0.31 we are getting this output
There is a new entry added to all items "alerts" set to an empty map {}, which causes the apply to fail.
Any suggestions?
Screenshots
If applicable, add screenshots to help explain your problem/idea.
If it's a bug (please complete the following information):
python --version
:pip3 --version
:Are you using pyenv or virtualenv?
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: