feat(container)!: Update image ghcr.io/netbox-community/netbox-chart/netbox ( 7.4.16 ➔ 8.0.8 )#1207
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Conversation
2b24386 to
ef75cc2
Compare
--- HelmRelease: flux-system/flux-operator Deployment: flux-system/flux-operator
+++ HelmRelease: flux-system/flux-operator Deployment: flux-system/flux-operator
@@ -46,13 +46,13 @@
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
- image: ghcr.io/controlplaneio-fluxcd/flux-operator:v0.42.1
+ image: ghcr.io/controlplaneio-fluxcd/flux-operator:v0.41.1
imagePullPolicy: IfNotPresent
ports:
- name: http-metrics
containerPort: 8080
protocol: TCP
- name: http
--- HelmRelease: flux-system/flux-instance FluxInstance: flux-system/flux
+++ HelmRelease: flux-system/flux-instance FluxInstance: flux-system/flux
@@ -9,13 +9,13 @@
app.kubernetes.io/instance: flux-instance
app.kubernetes.io/managed-by: Helm
spec:
distribution:
version: 2.x
registry: ghcr.io/fluxcd
- artifact: oci://ghcr.io/controlplaneio-fluxcd/flux-operator-manifests:v0.42.1
+ artifact: oci://ghcr.io/controlplaneio-fluxcd/flux-operator-manifests:v0.41.1
components:
- source-controller
- kustomize-controller
- helm-controller
- notification-controller
cluster: |
--- kubernetes/apps/flux-system/operator/ks Kustomization: flux-system/flux-operator OCIRepository: flux-system/flux-operator
+++ kubernetes/apps/flux-system/operator/ks Kustomization: flux-system/flux-operator OCIRepository: flux-system/flux-operator
@@ -11,9 +11,9 @@
spec:
interval: 1h
layerSelector:
mediaType: application/vnd.cncf.helm.chart.content.v1.tar+gzip
operation: copy
ref:
- tag: 0.42.1
+ tag: 0.41.1
url: oci://ghcr.io/controlplaneio-fluxcd/charts/flux-operator
--- kubernetes/apps/flux-system/instance/ks Kustomization: flux-system/flux-instance OCIRepository: flux-system/flux-instance
+++ kubernetes/apps/flux-system/instance/ks Kustomization: flux-system/flux-instance OCIRepository: flux-system/flux-instance
@@ -11,9 +11,9 @@
spec:
interval: 1h
layerSelector:
mediaType: application/vnd.cncf.helm.chart.content.v1.tar+gzip
operation: copy
ref:
- tag: 0.42.1
+ tag: 0.41.1
url: oci://ghcr.io/controlplaneio-fluxcd/charts/flux-instance
--- kubernetes/apps/flux-system/instance/ks Kustomization: flux-system/flux-instance HelmRelease: flux-system/flux-instance
+++ kubernetes/apps/flux-system/instance/ks Kustomization: flux-system/flux-instance HelmRelease: flux-system/flux-instance
@@ -12,8 +12,8 @@
chartRef:
kind: OCIRepository
name: flux-instance
interval: 1h
valuesFrom:
- kind: ConfigMap
- name: flux-helm-values-d7hcfdkcbc
+ name: flux-helm-values-k59gbg2g58
--- kubernetes/apps/flux-system/instance/ks Kustomization: flux-system/flux-instance ConfigMap: flux-system/flux-helm-values-d7hcfdkcbc
+++ kubernetes/apps/flux-system/instance/ks Kustomization: flux-system/flux-instance ConfigMap: flux-system/flux-helm-values-d7hcfdkcbc
@@ -1,140 +0,0 @@
----
-apiVersion: v1
-data:
- values.yaml: |
- instance:
- distribution:
- artifact: oci://ghcr.io/controlplaneio-fluxcd/flux-operator-manifests:v0.42.1
- version: 2.x
- cluster:
- networkPolicy: false
- components:
- - source-controller
- - kustomize-controller
- - helm-controller
- - notification-controller
- sync:
- kind: GitRepository
- url: https://github.com/jfroy/flatops
- ref: refs/heads/main
- path: kubernetes/cluster
- interval: 1h
- kustomize:
- patches:
- # Allow flux components to run on control plane nodes
- - patch: |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: all
- spec:
- template:
- spec:
- tolerations:
- - key: node-role.kubernetes.io/control-plane
- operator: Exists
- effect: NoSchedule
- target:
- kind: Deployment
- # Increase the number of reconciliations that can be performed in parallel
- # https://fluxcd.io/flux/installation/configuration/vertical-scaling/#increase-the-number-of-workers-and-limits
- - patch: |
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --concurrent=8
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --kube-api-qps=500
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --kube-api-burst=1000
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --requeue-dependency=5s
- target:
- kind: Deployment
- name: (kustomize-controller|helm-controller|source-controller)
- # Remove resource limits
- - patch: |
- - op: remove
- path: /spec/template/spec/containers/0/resources/limits
- target:
- kind: Deployment
- # Set HelmController log level to debug to investigate drift issues
- # https://fluxcd.io/flux/components/helm/helmreleases/#drift-detection
- - patch: |
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --log-level=debug
- target:
- kind: Deployment
- name: helm-controller
- - # Enable in-memory kustomize builds
- patch: |-
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --concurrent=20
- - op: replace
- path: /spec/template/spec/volumes/0
- value:
- name: temp
- emptyDir:
- medium: Memory
- target:
- kind: Deployment
- name: kustomize-controller
- - # Enable Helm repositories caching
- patch: |-
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --helm-cache-max-size=10
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --helm-cache-ttl=60m
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --helm-cache-purge-interval=5m
- target:
- kind: Deployment
- name: source-controller
- - # Cache Secrets and ConfigMaps
- patch: |-
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --feature-gates=CacheSecretsAndConfigMaps=true
- target:
- kind: Deployment
- name: source-controller
- - # Disable chart digest tracking
- patch: |-
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --feature-gates=DisableChartDigestTracking=true
- target:
- kind: Deployment
- name: helm-controller
- - # Watch configmaps and secrets attached to HelmReleases and Kustomizations
- patch: |-
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --watch-configs-label-selector=owner!=helm
- target:
- kind: Deployment
- name: (helm-controller|kustomize-controller)
- - # Cancel health checks on new Kustomizations revisions
- patch: |-
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --feature-gates=CancelHealthCheckOnNewRevision=true
- target:
- kind: Deployment
- name: kustomize-controller
-kind: ConfigMap
-metadata:
- labels:
- app.kubernetes.io/name: flux-instance
- kustomize.toolkit.fluxcd.io/name: flux-instance
- kustomize.toolkit.fluxcd.io/namespace: flux-system
- name: flux-helm-values-d7hcfdkcbc
- namespace: flux-system
-
--- kubernetes/apps/flux-system/instance/ks Kustomization: flux-system/flux-instance ConfigMap: flux-system/flux-helm-values-k59gbg2g58
+++ kubernetes/apps/flux-system/instance/ks Kustomization: flux-system/flux-instance ConfigMap: flux-system/flux-helm-values-k59gbg2g58
@@ -0,0 +1,140 @@
+---
+apiVersion: v1
+data:
+ values.yaml: |
+ instance:
+ distribution:
+ artifact: oci://ghcr.io/controlplaneio-fluxcd/flux-operator-manifests:v0.41.1
+ version: 2.x
+ cluster:
+ networkPolicy: false
+ components:
+ - source-controller
+ - kustomize-controller
+ - helm-controller
+ - notification-controller
+ sync:
+ kind: GitRepository
+ url: https://github.com/jfroy/flatops
+ ref: refs/heads/main
+ path: kubernetes/cluster
+ interval: 1h
+ kustomize:
+ patches:
+ # Allow flux components to run on control plane nodes
+ - patch: |
+ apiVersion: apps/v1
+ kind: Deployment
+ metadata:
+ name: all
+ spec:
+ template:
+ spec:
+ tolerations:
+ - key: node-role.kubernetes.io/control-plane
+ operator: Exists
+ effect: NoSchedule
+ target:
+ kind: Deployment
+ # Increase the number of reconciliations that can be performed in parallel
+ # https://fluxcd.io/flux/installation/configuration/vertical-scaling/#increase-the-number-of-workers-and-limits
+ - patch: |
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --concurrent=8
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --kube-api-qps=500
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --kube-api-burst=1000
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --requeue-dependency=5s
+ target:
+ kind: Deployment
+ name: (kustomize-controller|helm-controller|source-controller)
+ # Remove resource limits
+ - patch: |
+ - op: remove
+ path: /spec/template/spec/containers/0/resources/limits
+ target:
+ kind: Deployment
+ # Set HelmController log level to debug to investigate drift issues
+ # https://fluxcd.io/flux/components/helm/helmreleases/#drift-detection
+ - patch: |
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --log-level=debug
+ target:
+ kind: Deployment
+ name: helm-controller
+ - # Enable in-memory kustomize builds
+ patch: |-
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --concurrent=20
+ - op: replace
+ path: /spec/template/spec/volumes/0
+ value:
+ name: temp
+ emptyDir:
+ medium: Memory
+ target:
+ kind: Deployment
+ name: kustomize-controller
+ - # Enable Helm repositories caching
+ patch: |-
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --helm-cache-max-size=10
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --helm-cache-ttl=60m
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --helm-cache-purge-interval=5m
+ target:
+ kind: Deployment
+ name: source-controller
+ - # Cache Secrets and ConfigMaps
+ patch: |-
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --feature-gates=CacheSecretsAndConfigMaps=true
+ target:
+ kind: Deployment
+ name: source-controller
+ - # Disable chart digest tracking
+ patch: |-
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --feature-gates=DisableChartDigestTracking=true
+ target:
+ kind: Deployment
+ name: helm-controller
+ - # Watch configmaps and secrets attached to HelmReleases and Kustomizations
+ patch: |-
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --watch-configs-label-selector=owner!=helm
+ target:
+ kind: Deployment
+ name: (helm-controller|kustomize-controller)
+ - # Cancel health checks on new Kustomizations revisions
+ patch: |-
+ - op: add
+ path: /spec/template/spec/containers/0/args/-
+ value: --feature-gates=CancelHealthCheckOnNewRevision=true
+ target:
+ kind: Deployment
+ name: kustomize-controller
+kind: ConfigMap
+metadata:
+ labels:
+ app.kubernetes.io/name: flux-instance
+ kustomize.toolkit.fluxcd.io/name: flux-instance
+ kustomize.toolkit.fluxcd.io/namespace: flux-system
+ name: flux-helm-values-k59gbg2g58
+ namespace: flux-system
+ |
154972e to
16ee946
Compare
16ee946 to
73010a4
Compare
c88cc07 to
aca0b08
Compare
73010a4 to
1914892
Compare
1914892 to
1df465c
Compare
1df465c to
a7b19d9
Compare
a7b19d9 to
dcf4a57
Compare
…netbox ( 7.4.16 ➔ 8.0.8 )
dcf4a57 to
711c545
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
7.4.16→8.0.8Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.