Skip to content

Commit

Permalink
chore: update incident-commander image version to 0.0.956
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop authored and github-actions[bot] committed Dec 24, 2024
1 parent 776f131 commit 4f66d53
Show file tree
Hide file tree
Showing 3 changed files with 122 additions and 2 deletions.
2 changes: 1 addition & 1 deletion agent-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
image:
repository: docker.io/flanksource/incident-commander
pullPolicy: IfNotPresent
tag: "v0.0.955"
tag: "v0.0.956"
global:
# -v, -vv, -vvv
logLevel: ""
Expand Down
120 changes: 120 additions & 0 deletions chart/crds/mission-control.flanksource.com_notificationsilences.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.14.0
name: notificationsilences.mission-control.flanksource.com
spec:
group: mission-control.flanksource.com
names:
kind: NotificationSilence
listKind: NotificationSilenceList
plural: notificationsilences
singular: notificationsilence
scope: Namespaced
versions:
- name: v1
schema:
openAPIV3Schema:
description: NotificationSilence is the Schema for the managed Notification
Silences
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
properties:
description:
type: string
filter:
description: Filter evaluates whether to apply the silence. When provided,
silence is applied only if filter evaluates to true
type: string
from:
description: From time in RFC3339 format or just datetime
type: string
recursive:
type: boolean
selectors:
description: List of resource selectors
items:
properties:
agent:
description: |-
Agent can be the agent id or the name of the agent.
Additionally, the special "self" value can be used to select resources without an agent.
type: string
cache:
description: |-
Cache directives
'no-cache' (should not fetch from cache but can be cached)
'no-store' (should not cache)
'max-age=X' (cache for X duration)
type: string
fieldSelector:
type: string
id:
type: string
includeDeleted:
type: boolean
labelSelector:
type: string
limit:
type: integer
name:
type: string
namespace:
type: string
scope:
description: |-
Scope is the reference for parent of the resource to select.
For config items, the scope is the scraper id
For checks, it's canaries and
For components, it's topology.
It can either be a uuid or namespace/name
type: string
search:
description: Search query that applies to the resource name,
tag & labels.
type: string
statuses:
description: Statuses filter resources by the status
items:
type: string
type: array
tagSelector:
type: string
types:
description: Types filter resources by the type
items:
type: string
type: array
type: object
type: array
until:
description: Until time in RFC3339 format or just datetime
type: string
type: object
status:
description: NotificationStatus defines the observed state of Notification
type: object
type: object
served: true
storage: true
subresources:
status: {}
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ nameOverride: ""
image:
repository: docker.io/flanksource/incident-commander
pullPolicy: IfNotPresent
tag: "v0.0.955"
tag: "v0.0.956"
global:
# -v, -vv, -vvv
logLevel: ""
Expand Down

0 comments on commit 4f66d53

Please sign in to comment.