The silence-operator manages alertmanager silences.
The silence-operator monitors the Kubernetes API server for changes
to Silence
objects and ensures that the current Alertmanager silences match these objects.
The Operator reconciles the Silence
Custom Resource Definition (CRD) which
can be found here.
- Deployment runs the Kubernetes controller, which reconciles
Silence
CRs. - Cronjob runs the synchronization of raw CRs definition from the specified folder by matching tags.
Sample CR:
apiVersion: monitoring.giantswarm.io/v1alpha1
kind: Silence
metadata:
name: test-silence1
spec:
targetTags:
- name: installation
value: kind
- name: provider
value: local
matchers:
- name: cluster
value: test
isRegex: false
targetTags
field:- defines a list of tags, which
sync
command uses to match CRs towards a specific environment - each target tag consists of
name
andvalue
which is a regexp matched against correspondingname
tag given on the command line - if a
Silence
doesn't specify anytargetTags
it is assumed to match any environment and is synced - otherwise for a
Silence
to be synced, all tags defined in itstargetTags
must match all tags given on thesync
command line
- defines a list of tags, which
For example, to ensure raw CR, stored at /folder/cr.yaml
, run:
silence-operator sync --tag installation=kind --tag provider=local --dir /folder
matchers
field corresponds to the Alertmanager silencematchers
each of which consists of:name
- name of tag on an alert to matchvalue
- fixed string or expression to match against the value of the tag named byname
above on an alertisRegex
- a boolean specifying whether to treatvalue
as a regex (=~
) or a fixed string (=
)isEqual
- a boolean specifying whether to use equal signs (=
or=~
) or to negate the matcher (!=
or!~
)
Download the latest release: https://github.com/giantswarm/silence-operator/releases/latest
Clone the git repository: https://github.com/giantswarm/silence-operator.git
Download the latest docker image from here: https://quay.io/repository/giantswarm/silence-operator
Build the standard way.
go build github.com/giantswarm/silence-operator
- Mailing list: giantswarm
- Bugs: issues
See CONTRIBUTING for details on submitting patches, the contribution workflow as well as reporting bugs.
For security issues, please see the security policy.
silence-operator is under the Apache 2.0 license. See the LICENSE file for details.