chore: Update manifests after change
This commit is contained in:
+11238
File diff suppressed because it is too large
Load Diff
+9447
File diff suppressed because it is too large
Load Diff
+1320
File diff suppressed because it is too large
Load Diff
+1332
File diff suppressed because it is too large
Load Diff
+10864
File diff suppressed because it is too large
Load Diff
+12984
File diff suppressed because it is too large
Load Diff
+248
@@ -0,0 +1,248 @@
|
|||||||
|
apiVersion: apiextensions.k8s.io/v1
|
||||||
|
kind: CustomResourceDefinition
|
||||||
|
metadata:
|
||||||
|
annotations:
|
||||||
|
controller-gen.kubebuilder.io/version: v0.19.0
|
||||||
|
operator.prometheus.io/version: 0.90.1
|
||||||
|
name: prometheusrules.monitoring.coreos.com
|
||||||
|
spec:
|
||||||
|
group: monitoring.coreos.com
|
||||||
|
names:
|
||||||
|
categories:
|
||||||
|
- prometheus-operator
|
||||||
|
kind: PrometheusRule
|
||||||
|
listKind: PrometheusRuleList
|
||||||
|
plural: prometheusrules
|
||||||
|
shortNames:
|
||||||
|
- promrule
|
||||||
|
singular: prometheusrule
|
||||||
|
scope: Namespaced
|
||||||
|
versions:
|
||||||
|
- name: v1
|
||||||
|
schema:
|
||||||
|
openAPIV3Schema:
|
||||||
|
description: |-
|
||||||
|
The `PrometheusRule` custom resource definition (CRD) defines [alerting](https://prometheus.io/docs/prometheus/latest/configuration/alerting_rules/) and [recording](https://prometheus.io/docs/prometheus/latest/configuration/recording_rules/) rules to be evaluated by `Prometheus` or `ThanosRuler` objects.
|
||||||
|
|
||||||
|
`Prometheus` and `ThanosRuler` objects select `PrometheusRule` objects using label and namespace selectors.
|
||||||
|
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:
|
||||||
|
description: spec defines the specification of desired alerting rule definitions for Prometheus.
|
||||||
|
properties:
|
||||||
|
groups:
|
||||||
|
description: groups defines the content of Prometheus rule file
|
||||||
|
items:
|
||||||
|
description: RuleGroup is a list of sequentially evaluated recording and alerting rules.
|
||||||
|
properties:
|
||||||
|
interval:
|
||||||
|
description: interval defines how often rules in the group are evaluated.
|
||||||
|
pattern: ^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$
|
||||||
|
type: string
|
||||||
|
labels:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
labels define the labels to add or overwrite before storing the result for its rules.
|
||||||
|
The labels defined at the rule level take precedence.
|
||||||
|
|
||||||
|
It requires Prometheus >= 3.0.0.
|
||||||
|
The field is ignored for Thanos Ruler.
|
||||||
|
type: object
|
||||||
|
limit:
|
||||||
|
description: |-
|
||||||
|
limit defines the number of alerts an alerting rule and series a recording
|
||||||
|
rule can produce.
|
||||||
|
Limit is supported starting with Prometheus >= 2.31 and Thanos Ruler >= 0.24.
|
||||||
|
type: integer
|
||||||
|
name:
|
||||||
|
description: name defines the name of the rule group.
|
||||||
|
minLength: 1
|
||||||
|
type: string
|
||||||
|
partial_response_strategy:
|
||||||
|
description: |-
|
||||||
|
partial_response_strategy is only used by ThanosRuler and will
|
||||||
|
be ignored by Prometheus instances.
|
||||||
|
More info: https://github.com/thanos-io/thanos/blob/main/docs/components/rule.md#partial-response
|
||||||
|
pattern: ^(?i)(abort|warn)?$
|
||||||
|
type: string
|
||||||
|
query_offset:
|
||||||
|
description: |-
|
||||||
|
query_offset defines the offset the rule evaluation timestamp of this particular group by the specified duration into the past.
|
||||||
|
|
||||||
|
It requires Prometheus >= v2.53.0.
|
||||||
|
It is not supported for ThanosRuler.
|
||||||
|
pattern: ^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$
|
||||||
|
type: string
|
||||||
|
rules:
|
||||||
|
description: rules defines the list of alerting and recording rules.
|
||||||
|
items:
|
||||||
|
description: |-
|
||||||
|
Rule describes an alerting or recording rule
|
||||||
|
See Prometheus documentation: [alerting](https://www.prometheus.io/docs/prometheus/latest/configuration/alerting_rules/) or [recording](https://www.prometheus.io/docs/prometheus/latest/configuration/recording_rules/#recording-rules) rule
|
||||||
|
properties:
|
||||||
|
alert:
|
||||||
|
description: |-
|
||||||
|
alert defines the name of the alert. Must be a valid label value.
|
||||||
|
Only one of `record` and `alert` must be set.
|
||||||
|
type: string
|
||||||
|
annotations:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
annotations defines annotations to add to each alert.
|
||||||
|
Only valid for alerting rules.
|
||||||
|
type: object
|
||||||
|
expr:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: expr defines the PromQL expression to evaluate.
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
for:
|
||||||
|
description: for defines how alerts are considered firing once they have been returned for this long.
|
||||||
|
pattern: ^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$
|
||||||
|
type: string
|
||||||
|
keep_firing_for:
|
||||||
|
description: keep_firing_for defines how long an alert will continue firing after the condition that triggered it has cleared.
|
||||||
|
minLength: 1
|
||||||
|
pattern: ^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$
|
||||||
|
type: string
|
||||||
|
labels:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
description: labels defines labels to add or overwrite.
|
||||||
|
type: object
|
||||||
|
record:
|
||||||
|
description: |-
|
||||||
|
record defines the name of the time series to output to. Must be a valid metric name.
|
||||||
|
Only one of `record` and `alert` must be set.
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- expr
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-map-keys:
|
||||||
|
- name
|
||||||
|
x-kubernetes-list-type: map
|
||||||
|
type: object
|
||||||
|
status:
|
||||||
|
description: |-
|
||||||
|
status defines the status subresource. It is under active development and is updated only when the
|
||||||
|
"StatusForConfigurationResources" feature gate is enabled.
|
||||||
|
|
||||||
|
Most recent observed status of the PrometheusRule. Read-only.
|
||||||
|
More info:
|
||||||
|
https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
||||||
|
properties:
|
||||||
|
bindings:
|
||||||
|
description: bindings defines the list of workload resources (Prometheus, PrometheusAgent, ThanosRuler or Alertmanager) which select the configuration resource.
|
||||||
|
items:
|
||||||
|
description: WorkloadBinding is a link between a configuration resource and a workload resource.
|
||||||
|
properties:
|
||||||
|
conditions:
|
||||||
|
description: conditions defines the current state of the configuration resource when bound to the referenced Workload object.
|
||||||
|
items:
|
||||||
|
description: ConfigResourceCondition describes the status of configuration resources linked to Prometheus, PrometheusAgent, Alertmanager or ThanosRuler.
|
||||||
|
properties:
|
||||||
|
lastTransitionTime:
|
||||||
|
description: lastTransitionTime defines the time of the last update to the current status property.
|
||||||
|
format: date-time
|
||||||
|
type: string
|
||||||
|
message:
|
||||||
|
description: message defines the human-readable message indicating details for the condition's last transition.
|
||||||
|
type: string
|
||||||
|
observedGeneration:
|
||||||
|
description: |-
|
||||||
|
observedGeneration defines the .metadata.generation that the
|
||||||
|
condition was set based upon. For instance, if `.metadata.generation` is
|
||||||
|
currently 12, but the `.status.conditions[].observedGeneration` is 9, the
|
||||||
|
condition is out of date with respect to the current state of the object.
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
reason:
|
||||||
|
description: reason for the condition's last transition.
|
||||||
|
type: string
|
||||||
|
status:
|
||||||
|
description: status of the condition.
|
||||||
|
minLength: 1
|
||||||
|
type: string
|
||||||
|
type:
|
||||||
|
description: |-
|
||||||
|
type of the condition being reported.
|
||||||
|
Currently, only "Accepted" is supported.
|
||||||
|
enum:
|
||||||
|
- Accepted
|
||||||
|
minLength: 1
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- lastTransitionTime
|
||||||
|
- status
|
||||||
|
- type
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-map-keys:
|
||||||
|
- type
|
||||||
|
x-kubernetes-list-type: map
|
||||||
|
group:
|
||||||
|
description: group defines the group of the referenced resource.
|
||||||
|
enum:
|
||||||
|
- monitoring.coreos.com
|
||||||
|
type: string
|
||||||
|
name:
|
||||||
|
description: name defines the name of the referenced object.
|
||||||
|
minLength: 1
|
||||||
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: namespace defines the namespace of the referenced object.
|
||||||
|
minLength: 1
|
||||||
|
type: string
|
||||||
|
resource:
|
||||||
|
description: resource defines the type of resource being referenced (e.g. Prometheus, PrometheusAgent, ThanosRuler or Alertmanager).
|
||||||
|
enum:
|
||||||
|
- prometheuses
|
||||||
|
- prometheusagents
|
||||||
|
- thanosrulers
|
||||||
|
- alertmanagers
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- group
|
||||||
|
- name
|
||||||
|
- namespace
|
||||||
|
- resource
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
x-kubernetes-list-map-keys:
|
||||||
|
- group
|
||||||
|
- resource
|
||||||
|
- name
|
||||||
|
- namespace
|
||||||
|
x-kubernetes-list-type: map
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- spec
|
||||||
|
type: object
|
||||||
|
served: true
|
||||||
|
storage: true
|
||||||
|
subresources:
|
||||||
|
status: {}
|
||||||
+11836
File diff suppressed because it is too large
Load Diff
+1332
File diff suppressed because it is too large
Load Diff
+9242
File diff suppressed because it is too large
Load Diff
@@ -5,10 +5,10 @@ metadata:
|
|||||||
namespace: postiz
|
namespace: postiz
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: postiz-postgresql-18-cluster
|
app.kubernetes.io/name: postiz-postgresql-18-cluster
|
||||||
helm.sh/chart: postgres-18-cluster-7.10.0
|
helm.sh/chart: postgres-18-cluster-7.11.2
|
||||||
app.kubernetes.io/instance: postiz
|
app.kubernetes.io/instance: postiz
|
||||||
app.kubernetes.io/part-of: postiz
|
app.kubernetes.io/part-of: postiz
|
||||||
app.kubernetes.io/version: "7.10.0"
|
app.kubernetes.io/version: "7.11.2"
|
||||||
app.kubernetes.io/managed-by: Helm
|
app.kubernetes.io/managed-by: Helm
|
||||||
spec:
|
spec:
|
||||||
instances: 3
|
instances: 3
|
||||||
@@ -26,8 +26,8 @@ spec:
|
|||||||
limits:
|
limits:
|
||||||
hugepages-2Mi: 256Mi
|
hugepages-2Mi: 256Mi
|
||||||
requests:
|
requests:
|
||||||
cpu: 100m
|
cpu: 20m
|
||||||
memory: 256Mi
|
memory: 80Mi
|
||||||
affinity:
|
affinity:
|
||||||
enablePodAntiAffinity: true
|
enablePodAntiAffinity: true
|
||||||
topologyKey: kubernetes.io/hostname
|
topologyKey: kubernetes.io/hostname
|
||||||
|
|||||||
@@ -92,13 +92,12 @@ spec:
|
|||||||
name: postiz-oidc-secret
|
name: postiz-oidc-secret
|
||||||
- name: POSTIZ_OAUTH_SCOPE
|
- name: POSTIZ_OAUTH_SCOPE
|
||||||
value: openid profile email
|
value: openid profile email
|
||||||
image: ghcr.io/gitroomhq/postiz-app:v2.21.4
|
image: ghcr.io/gitroomhq/postiz-app:v2.21.4@sha256:a339e9ee256537526d0eda19e5919e01fa7649a40596ebec5d9e1389850836bc
|
||||||
imagePullPolicy: IfNotPresent
|
|
||||||
name: main
|
name: main
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 10m
|
cpu: 10m
|
||||||
memory: 128Mi
|
memory: 1Gi
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /config
|
- mountPath: /config
|
||||||
name: config
|
name: config
|
||||||
|
|||||||
@@ -14,8 +14,5 @@ spec:
|
|||||||
data:
|
data:
|
||||||
- secretKey: JWT_SECRET
|
- secretKey: JWT_SECRET
|
||||||
remoteRef:
|
remoteRef:
|
||||||
conversionStrategy: Default
|
|
||||||
decodingStrategy: None
|
|
||||||
key: /cl01tl/postiz/config
|
key: /cl01tl/postiz/config
|
||||||
metadataPolicy: None
|
|
||||||
property: JWT_SECRET
|
property: JWT_SECRET
|
||||||
|
|||||||
@@ -14,15 +14,9 @@ spec:
|
|||||||
data:
|
data:
|
||||||
- secretKey: client
|
- secretKey: client
|
||||||
remoteRef:
|
remoteRef:
|
||||||
conversionStrategy: Default
|
|
||||||
decodingStrategy: None
|
|
||||||
key: /authentik/oidc/postiz
|
key: /authentik/oidc/postiz
|
||||||
metadataPolicy: None
|
|
||||||
property: client
|
property: client
|
||||||
- secretKey: secret
|
- secretKey: secret
|
||||||
remoteRef:
|
remoteRef:
|
||||||
conversionStrategy: Default
|
|
||||||
decodingStrategy: None
|
|
||||||
key: /authentik/oidc/postiz
|
key: /authentik/oidc/postiz
|
||||||
metadataPolicy: None
|
|
||||||
property: secret
|
property: secret
|
||||||
|
|||||||
+2
-2
@@ -5,10 +5,10 @@ metadata:
|
|||||||
namespace: postiz
|
namespace: postiz
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: postiz-postgresql-18-backup-garage-local-secret
|
app.kubernetes.io/name: postiz-postgresql-18-backup-garage-local-secret
|
||||||
helm.sh/chart: postgres-18-cluster-7.10.0
|
helm.sh/chart: postgres-18-cluster-7.11.2
|
||||||
app.kubernetes.io/instance: postiz
|
app.kubernetes.io/instance: postiz
|
||||||
app.kubernetes.io/part-of: postiz
|
app.kubernetes.io/part-of: postiz
|
||||||
app.kubernetes.io/version: "7.10.0"
|
app.kubernetes.io/version: "7.11.2"
|
||||||
app.kubernetes.io/managed-by: Helm
|
app.kubernetes.io/managed-by: Helm
|
||||||
spec:
|
spec:
|
||||||
secretStoreRef:
|
secretStoreRef:
|
||||||
|
|||||||
+2
-2
@@ -4,10 +4,10 @@ metadata:
|
|||||||
name: postiz-postgresql-18-recovery-secret
|
name: postiz-postgresql-18-recovery-secret
|
||||||
namespace: postiz
|
namespace: postiz
|
||||||
labels:
|
labels:
|
||||||
helm.sh/chart: postgres-18-cluster-7.10.0
|
helm.sh/chart: postgres-18-cluster-7.11.2
|
||||||
app.kubernetes.io/instance: postiz
|
app.kubernetes.io/instance: postiz
|
||||||
app.kubernetes.io/part-of: postiz
|
app.kubernetes.io/part-of: postiz
|
||||||
app.kubernetes.io/version: "7.10.0"
|
app.kubernetes.io/version: "7.11.2"
|
||||||
app.kubernetes.io/managed-by: Helm
|
app.kubernetes.io/managed-by: Helm
|
||||||
app.kubernetes.io/name: postiz-postgresql-18-recovery-secret
|
app.kubernetes.io/name: postiz-postgresql-18-recovery-secret
|
||||||
spec:
|
spec:
|
||||||
|
|||||||
@@ -14,29 +14,17 @@ spec:
|
|||||||
data:
|
data:
|
||||||
- secretKey: REDIS_URL
|
- secretKey: REDIS_URL
|
||||||
remoteRef:
|
remoteRef:
|
||||||
conversionStrategy: Default
|
|
||||||
decodingStrategy: None
|
|
||||||
key: /cl01tl/postiz/valkey
|
key: /cl01tl/postiz/valkey
|
||||||
metadataPolicy: None
|
|
||||||
property: url
|
property: url
|
||||||
- secretKey: user
|
- secretKey: user
|
||||||
remoteRef:
|
remoteRef:
|
||||||
conversionStrategy: Default
|
|
||||||
decodingStrategy: None
|
|
||||||
key: /cl01tl/postiz/valkey
|
key: /cl01tl/postiz/valkey
|
||||||
metadataPolicy: None
|
|
||||||
property: user
|
property: user
|
||||||
- secretKey: password
|
- secretKey: password
|
||||||
remoteRef:
|
remoteRef:
|
||||||
conversionStrategy: Default
|
|
||||||
decodingStrategy: None
|
|
||||||
key: /cl01tl/postiz/valkey
|
key: /cl01tl/postiz/valkey
|
||||||
metadataPolicy: None
|
|
||||||
property: password
|
property: password
|
||||||
- secretKey: default
|
- secretKey: default
|
||||||
remoteRef:
|
remoteRef:
|
||||||
conversionStrategy: Default
|
|
||||||
decodingStrategy: None
|
|
||||||
key: /cl01tl/postiz/valkey
|
key: /cl01tl/postiz/valkey
|
||||||
metadataPolicy: None
|
|
||||||
property: password
|
property: password
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
apiVersion: gateway.networking.k8s.io/v1
|
|
||||||
kind: HTTPRoute
|
|
||||||
metadata:
|
|
||||||
name: http-route-postiz
|
|
||||||
namespace: postiz
|
|
||||||
labels:
|
|
||||||
app.kubernetes.io/name: http-route-postiz
|
|
||||||
app.kubernetes.io/instance: postiz
|
|
||||||
app.kubernetes.io/part-of: postiz
|
|
||||||
spec:
|
|
||||||
parentRefs:
|
|
||||||
- group: gateway.networking.k8s.io
|
|
||||||
kind: Gateway
|
|
||||||
name: traefik-gateway
|
|
||||||
namespace: traefik
|
|
||||||
hostnames:
|
|
||||||
- postiz.alexlebens.net
|
|
||||||
rules:
|
|
||||||
- matches:
|
|
||||||
- path:
|
|
||||||
type: PathPrefix
|
|
||||||
value: /
|
|
||||||
backendRefs:
|
|
||||||
- group: ''
|
|
||||||
kind: Service
|
|
||||||
name: postiz
|
|
||||||
port: 80
|
|
||||||
weight: 100
|
|
||||||
@@ -23,7 +23,7 @@ spec:
|
|||||||
name: postiz
|
name: postiz
|
||||||
namespace: postiz
|
namespace: postiz
|
||||||
port: 80
|
port: 80
|
||||||
weight: 100
|
weight: 1
|
||||||
matches:
|
matches:
|
||||||
- path:
|
- path:
|
||||||
type: PathPrefix
|
type: PathPrefix
|
||||||
|
|||||||
+2
-2
@@ -5,10 +5,10 @@ metadata:
|
|||||||
namespace: postiz
|
namespace: postiz
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: postiz-postgresql-18-backup-garage-local
|
app.kubernetes.io/name: postiz-postgresql-18-backup-garage-local
|
||||||
helm.sh/chart: postgres-18-cluster-7.10.0
|
helm.sh/chart: postgres-18-cluster-7.11.2
|
||||||
app.kubernetes.io/instance: postiz
|
app.kubernetes.io/instance: postiz
|
||||||
app.kubernetes.io/part-of: postiz
|
app.kubernetes.io/part-of: postiz
|
||||||
app.kubernetes.io/version: "7.10.0"
|
app.kubernetes.io/version: "7.11.2"
|
||||||
app.kubernetes.io/managed-by: Helm
|
app.kubernetes.io/managed-by: Helm
|
||||||
spec:
|
spec:
|
||||||
retentionPolicy: 7d
|
retentionPolicy: 7d
|
||||||
|
|||||||
@@ -4,10 +4,10 @@ metadata:
|
|||||||
name: "postiz-postgresql-18-recovery"
|
name: "postiz-postgresql-18-recovery"
|
||||||
namespace: postiz
|
namespace: postiz
|
||||||
labels:
|
labels:
|
||||||
helm.sh/chart: postgres-18-cluster-7.10.0
|
helm.sh/chart: postgres-18-cluster-7.11.2
|
||||||
app.kubernetes.io/instance: postiz
|
app.kubernetes.io/instance: postiz
|
||||||
app.kubernetes.io/part-of: postiz
|
app.kubernetes.io/part-of: postiz
|
||||||
app.kubernetes.io/version: "7.10.0"
|
app.kubernetes.io/version: "7.11.2"
|
||||||
app.kubernetes.io/managed-by: Helm
|
app.kubernetes.io/managed-by: Helm
|
||||||
app.kubernetes.io/name: "postiz-postgresql-18-recovery"
|
app.kubernetes.io/name: "postiz-postgresql-18-recovery"
|
||||||
spec:
|
spec:
|
||||||
|
|||||||
@@ -7,8 +7,6 @@ metadata:
|
|||||||
app.kubernetes.io/managed-by: Helm
|
app.kubernetes.io/managed-by: Helm
|
||||||
app.kubernetes.io/name: postiz
|
app.kubernetes.io/name: postiz
|
||||||
helm.sh/chart: postiz-4.6.2
|
helm.sh/chart: postiz-4.6.2
|
||||||
annotations:
|
|
||||||
helm.sh/resource-policy: keep
|
|
||||||
namespace: postiz
|
namespace: postiz
|
||||||
spec:
|
spec:
|
||||||
accessModes:
|
accessModes:
|
||||||
|
|||||||
@@ -7,8 +7,6 @@ metadata:
|
|||||||
app.kubernetes.io/managed-by: Helm
|
app.kubernetes.io/managed-by: Helm
|
||||||
app.kubernetes.io/name: postiz
|
app.kubernetes.io/name: postiz
|
||||||
helm.sh/chart: postiz-4.6.2
|
helm.sh/chart: postiz-4.6.2
|
||||||
annotations:
|
|
||||||
helm.sh/resource-policy: keep
|
|
||||||
namespace: postiz
|
namespace: postiz
|
||||||
spec:
|
spec:
|
||||||
accessModes:
|
accessModes:
|
||||||
|
|||||||
+2
-2
@@ -5,10 +5,10 @@ metadata:
|
|||||||
namespace: postiz
|
namespace: postiz
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: postiz-postgresql-18-alert-rules
|
app.kubernetes.io/name: postiz-postgresql-18-alert-rules
|
||||||
helm.sh/chart: postgres-18-cluster-7.10.0
|
helm.sh/chart: postgres-18-cluster-7.11.2
|
||||||
app.kubernetes.io/instance: postiz
|
app.kubernetes.io/instance: postiz
|
||||||
app.kubernetes.io/part-of: postiz
|
app.kubernetes.io/part-of: postiz
|
||||||
app.kubernetes.io/version: "7.10.0"
|
app.kubernetes.io/version: "7.11.2"
|
||||||
app.kubernetes.io/managed-by: Helm
|
app.kubernetes.io/managed-by: Helm
|
||||||
spec:
|
spec:
|
||||||
groups:
|
groups:
|
||||||
|
|||||||
+2
-2
@@ -5,10 +5,10 @@ metadata:
|
|||||||
namespace: postiz
|
namespace: postiz
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: "postiz-postgresql-18-scheduled-backup-live-backup"
|
app.kubernetes.io/name: "postiz-postgresql-18-scheduled-backup-live-backup"
|
||||||
helm.sh/chart: postgres-18-cluster-7.10.0
|
helm.sh/chart: postgres-18-cluster-7.11.2
|
||||||
app.kubernetes.io/instance: postiz
|
app.kubernetes.io/instance: postiz
|
||||||
app.kubernetes.io/part-of: postiz
|
app.kubernetes.io/part-of: postiz
|
||||||
app.kubernetes.io/version: "7.10.0"
|
app.kubernetes.io/version: "7.11.2"
|
||||||
app.kubernetes.io/managed-by: Helm
|
app.kubernetes.io/managed-by: Helm
|
||||||
spec:
|
spec:
|
||||||
immediate: true
|
immediate: true
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ spec:
|
|||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 10m
|
cpu: 10m
|
||||||
memory: 128Mi
|
memory: 20Mi
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: valkey-data
|
- name: valkey-data
|
||||||
mountPath: /data
|
mountPath: /data
|
||||||
|
|||||||
Reference in New Issue
Block a user