Skip to content
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

feat(container): update vector group #721

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

chii-bot[bot]
Copy link
Contributor

@chii-bot chii-bot bot commented Aug 10, 2022

This PR contains the following updates:

Package Update Change
timberio/vector minor 0.23.0-debian -> 0.45.0-debian
vector (source) minor 0.14.0 -> 0.41.0

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

vectordotdev/helm-charts

v0.41.0

Compare Source

Releasing
Vector
Bug Fixes
  • Use .KubeVersion.Version rather than .KubeVersion.GitVersion for capability detection (#​449) (931fa10)

v0.40.0

Compare Source

Vector
Features

v0.39.0

Compare Source

Vector
Features

v0.38.1

Compare Source

Vector
Bug Fixes
Features

v0.38.0

Compare Source

Vector
Features

v0.37.0

Compare Source

Vector
Features

v0.36.1

Compare Source

Vector
Bug Fixes

v0.36.0

Compare Source

Vector
Features

v0.35.3

Compare Source

Vector
Bug Fixes

v0.35.2

Compare Source

Vector
Bug Fixes

v0.35.1

Compare Source

Vector
Bug Fixes

v0.35.0

Compare Source

Vector
Features
  • Update Vector to v0.40.0 (037dce3)

v0.34.0

Compare Source

Vector
Bug Fixes
Features

v0.33.0

Compare Source

Vector
Bug Fixes
  • Have psp support hostNetwork: true when podHostNetwork is true (#​385) (b23cf1f)
Features
  • Bump Vector version to v0.38.0 (f430315)

v0.32.1

Compare Source

Vector
Bug Fixes

v0.32.0

Compare Source

Vector
Features

v0.31.1

Compare Source

Vector
Bug Fixes

v0.31.0

Compare Source

Vector
Features
  • Bump Vector version to v0.36.0 (a2f8c8a)

v0.30.2

Compare Source

Vector
Bug Fixes

v0.30.0

Compare Source

Vector
Features

v0.29.1

Compare Source

Vector
Features

v0.29.0

Compare Source

Vector
Bug Fixes
Features
  • Add autoscaling.annotations field for configuring annotations on Vector's HPA (#​336) (98c202a)

v0.28.0

Compare Source

Vector
Features

v0.27.0

Compare Source

Vector
Features
  • Bump charts to Vector v0.33.1 (49b8d44)

v0.26.0

Compare Source

Vector
Features
  • Bump Vector version to v0.33.0 (f6521dd)

v0.25.0

Compare Source

Vector
Bug Fixes
Features

v0.24.1

Compare Source

Vector
Bug Fixes

v0.24.0

Compare Source

Vector
Features

v0.23.0

Compare Source

Vector
Features

v0.22.1

Compare Source

Vector
Bug Fixes

v0.22.0

Compare Source

Vector
Bug Fixes
Features

v0.21.1

Compare Source

Vector
Bug Fixes

v0.21.0

Compare Source

Vector
Features

v0.20.2

Compare Source

Vector
Bug Fixes

v0.20.1

Compare Source

Vector
Bug Fixes

v0.20.0

Compare Source

Vector
Features
  • Bump Vector version to 0.28.0 (59413e8)

v0.19.2

Compare Source

Vector
Bug Fixes
Features
  • Add annotations for deployment, daemonset, statefulset (#​280) (bce0b77)

v0.19.0

Compare Source

Vector
Features
  • Bump to v0.27.0 release of Vector (6a987bc)

v0.18.0

Compare Source

Vector
Features
  • Upgrade chart to Vector 0.26.0 (118473b)

v0.17.1

Compare Source

Vector
Bug Fixes
  • Update to Vector 0.25.2 (3638639)

v0.17.0

Compare Source

Vector
Bug Fixes
  • Apply various suggested changes from JetBrains markdown and proofreading inspections (#​256) (b5a1a52)
  • Remove color codes in NOTES.txt (#​255) (42bf5b0)
  • Update haproxy to use image.pullSecrets (#​265) (d71856d)
Features

v0.16.3

Compare Source

Vector
Bug Fixes

v0.16.2

Compare Source

Ci
Bug Fixes

v0.16.0

Compare Source

Vector
Features

v0.15.1

Compare Source

Vector
Bug Fixes

v0.15.0

Compare Source

Vector
Features

Configuration

📅 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

@chii-bot chii-bot bot requested a review from toboshii as a code owner August 10, 2022 20:18
@chii-bot chii-bot bot added renovate/container type/patch size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. area/cluster Changes made in the cluster directory labels Aug 10, 2022
@chii-bot
Copy link
Contributor Author

chii-bot bot commented Aug 10, 2022

Path: cluster/apps/monitoring/vector/agent/helm-release.yaml
Version: 0.14.0 -> 0.41.0

@@ -4,6 +4,7 @@
 kind: ServiceAccount
 metadata:
 name: vector
+ namespace: default
 labels:
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
@@ -16,6 +17,7 @@
 kind: ConfigMap
 metadata:
 name: vector
+ namespace: default
 labels:
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
@@ -101,11 +103,45 @@
 name: vector
 namespace: default
 ---
+# Source: vector/templates/service-headless.yaml
+apiVersion: v1
+kind: Service
+metadata:
+ name: vector-headless
+ namespace: default
+ labels:
+ app.kubernetes.io/name: vector
+ app.kubernetes.io/instance: vector
+ app.kubernetes.io/component: Agent
+ app.kubernetes.io/managed-by: Helm
+ annotations:
+spec:
+ clusterIP: None
+ ports:
+ - name: loki-journal-sink
+ port: 6000
+ protocol: TCP
+ targetPort: 6000
+ - name: loki-kubernetes-sink
+ port: 6010
+ protocol: TCP
+ targetPort: 6010
+ - name: prometheus-sink
+ port: 9090
+ protocol: TCP
+ targetPort: 9090
+ selector:
+ app.kubernetes.io/name: vector
+ app.kubernetes.io/instance: vector
+ app.kubernetes.io/component: Agent
+ type: ClusterIP
+---
 # Source: vector/templates/daemonset.yaml
 apiVersion: apps/v1
 kind: DaemonSet
 metadata:
 name: vector
+ namespace: default
 labels:
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
@@ -117,10 +153,11 @@
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
 app.kubernetes.io/component: Agent
+ minReadySeconds: 0
 template:
 metadata:
 annotations:
- checksum/config: 74d6108faa5a6db7c10f78d01cfc32f3e9700d5777bbcd501807d284d05c17ff
+ checksum/config: 9bf062c3a91999a2faf24b3ac28bdc82f56848cab17ceb1cb0ae2f8065bec40f
 labels:
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
@@ -133,12 +170,14 @@
 - name: vector
 securityContext:
 privileged: true
- image: "timberio/vector:0.23.0-debian"
+ image: "timberio/vector:0.45.0-debian"
 imagePullPolicy: IfNotPresent
 args:
 - --config-dir
 - /etc/vector/
 env:
+ - name: VECTOR_LOG
+ value: "info"
 - name: VECTOR_SELF_NODE_NAME
 valueFrom:
 fieldRef:
@@ -171,17 +210,17 @@
 - name: config
 mountPath: "/etc/vector/"
 readOnly: true
- - name: var-log
- mountPath: "/var/log/"
+ - mountPath: /var/log/
+ name: var-log
 readOnly: true
- - name: var-lib
- mountPath: "/var/lib"
+ - mountPath: /var/lib
+ name: var-lib
 readOnly: true
- - name: procfs
- mountPath: "/host/proc"
+ - mountPath: /host/proc
+ name: procfs
 readOnly: true
- - name: sysfs
- mountPath: "/host/sys"
+ - mountPath: /host/sys
+ name: sysfs
 readOnly: true
 terminationGracePeriodSeconds: 60
 tolerations:
@@ -198,15 +237,15 @@
 - name: data
 hostPath:
 path: "/var/lib/vector"
- - name: var-log
- hostPath:
- path: "/var/log/"
- - name: var-lib
- hostPath:
- path: "/var/lib/"
- - name: procfs
- hostPath:
- path: "/proc"
- - name: sysfs
- hostPath:
- path: "/sys"
+ - hostPath:
+ path: /var/log/
+ name: var-log
+ - hostPath:
+ path: /var/lib/
+ name: var-lib
+ - hostPath:
+ path: /proc
+ name: procfs
+ - hostPath:
+ path: /sys
+ name: sysfs

@chii-bot
Copy link
Contributor Author

chii-bot bot commented Aug 10, 2022

Path: cluster/apps/monitoring/vector/aggregator/helm-release.yaml
Version: 0.14.0 -> 0.41.0

@@ -4,6 +4,7 @@
 kind: ServiceAccount
 metadata:
 name: vector
+ namespace: default
 labels:
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
@@ -16,6 +17,7 @@
 kind: ConfigMap
 metadata:
 name: vector
+ namespace: default
 labels:
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
@@ -87,6 +89,7 @@
 kind: Service
 metadata:
 name: vector-headless
+ namespace: default
 labels:
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
@@ -119,6 +122,7 @@
 kind: Service
 metadata:
 name: vector
+ namespace: default
 labels:
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
@@ -150,11 +154,13 @@
 kind: Deployment
 metadata:
 name: vector
+ namespace: default
 labels:
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
 app.kubernetes.io/component: Stateless-Aggregator
 app.kubernetes.io/managed-by: Helm
+ annotations: {}
 spec:
 replicas: 3
 selector:
@@ -162,10 +168,11 @@
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
 app.kubernetes.io/component: Stateless-Aggregator
+ minReadySeconds: 0
 template:
 metadata:
 annotations:
- checksum/config: 0e1e1c74846880a94ab30b36ef6edbf3e6a142b43a6c845359998432a61493f4
+ checksum/config: 5d09ba3ef5434705315ce01c09f93571305f7e1091b5fa59fdf42e942e5b87a0
 labels:
 app.kubernetes.io/name: vector
 app.kubernetes.io/instance: vector
@@ -176,12 +183,14 @@
 dnsPolicy: ClusterFirst
 containers:
 - name: vector
- image: "timberio/vector:0.23.0-debian"
+ image: "timberio/vector:0.45.0-debian"
 imagePullPolicy: IfNotPresent
 args:
 - --config-dir
 - /etc/vector/
 env:
+ - name: VECTOR_LOG
+ value: "info"
 ports:
 - name: prometheus-sink
 containerPort: 9090

@chii-bot
Copy link
Contributor Author

chii-bot bot commented Aug 10, 2022

MegaLinter status: ❌ ERROR

Descriptor Linter Files Fixed Errors Elapsed time
❌ COPYPASTE jscpd yes 2 1.02s
✅ REPOSITORY git_diff yes no 0.02s
✅ REPOSITORY secretlint yes no 1.23s
✅ YAML prettier 2 0 0.62s
✅ YAML yamllint 2 0 0.19s

See errors details in artifact MegaLinter reports on CI Job page
Set VALIDATE_ALL_CODEBASE: true in mega-linter.yml to validate all sources, not only the diff

@chii-bot chii-bot bot changed the title fix(container): update image timberio/vector to v0.23.3 fix(container): update vector group Aug 11, 2022
@chii-bot chii-bot bot force-pushed the renovate/vector branch 2 times, most recently from bbf7e8d to fc0cd27 Compare August 12, 2022 13:41
@chii-bot chii-bot bot changed the title fix(container): update vector group fix(container): update image timberio/vector to v0.23.3 Aug 26, 2022
@chii-bot chii-bot bot changed the title fix(container): update image timberio/vector to v0.23.3 fix(container): update vector group Aug 26, 2022
@chii-bot chii-bot bot changed the title fix(container): update vector group feat(container): update vector group Aug 30, 2022
@chii-bot chii-bot bot force-pushed the renovate/vector branch 2 times, most recently from 46dfcd0 to 784aa6e Compare August 30, 2022 22:19
@chii-bot chii-bot bot changed the title feat(container): update vector group feat(container): update image timberio/vector to v0.24.1 Sep 15, 2022
@chii-bot chii-bot bot changed the title feat(container): update image timberio/vector to v0.24.1 feat(container): update vector group Sep 15, 2022
@chii-bot chii-bot bot force-pushed the renovate/vector branch 3 times, most recently from ec7c1bd to 8323584 Compare October 13, 2022 16:33
@chii-bot chii-bot bot force-pushed the renovate/vector branch 2 times, most recently from 317b326 to 7b66b1d Compare November 7, 2022 21:19
@chii-bot chii-bot bot force-pushed the renovate/vector branch from 7b66b1d to 263f0eb Compare November 16, 2022 18:22
@chii-bot chii-bot bot force-pushed the renovate/vector branch 4 times, most recently from 4f49a26 to 727a2aa Compare December 5, 2022 23:17
@chii-bot chii-bot bot force-pushed the renovate/vector branch from 727a2aa to 50ce185 Compare January 18, 2023 18:20
@chii-bot chii-bot bot force-pushed the renovate/vector branch from c72469e to 442e5c2 Compare March 26, 2024 18:19
@chii-bot chii-bot bot force-pushed the renovate/vector branch 2 times, most recently from f2aba59 to bcca866 Compare April 10, 2024 14:13
@chii-bot chii-bot bot force-pushed the renovate/vector branch 2 times, most recently from 63c7176 to f5e84a4 Compare May 7, 2024 17:14
@chii-bot chii-bot bot force-pushed the renovate/vector branch from f5e84a4 to 6f4e778 Compare June 17, 2024 16:20
@github-advanced-security
Copy link

This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation.

@chii-bot chii-bot bot force-pushed the renovate/vector branch from 6f4e778 to a608874 Compare June 17, 2024 18:21
@chii-bot chii-bot bot force-pushed the renovate/vector branch 2 times, most recently from ba5f7e3 to 0332d89 Compare July 29, 2024 19:14
@chii-bot chii-bot bot force-pushed the renovate/vector branch from 0332d89 to 649c6ee Compare August 26, 2024 17:16
@chii-bot chii-bot bot force-pushed the renovate/vector branch 5 times, most recently from 384d1e2 to cf55187 Compare September 9, 2024 19:14
@chii-bot chii-bot bot force-pushed the renovate/vector branch 2 times, most recently from 0530c10 to d21b293 Compare September 11, 2024 19:13
@chii-bot chii-bot bot force-pushed the renovate/vector branch 2 times, most recently from dd78934 to 3e56528 Compare October 21, 2024 18:26
@chii-bot chii-bot bot force-pushed the renovate/vector branch 3 times, most recently from 3ff1124 to 3f40169 Compare December 10, 2024 17:17
@chii-bot chii-bot bot force-pushed the renovate/vector branch from 3f40169 to ad73d8b Compare December 11, 2024 17:17
@chii-bot chii-bot bot force-pushed the renovate/vector branch 3 times, most recently from d8966b3 to 8ee5097 Compare January 14, 2025 19:14
@chii-bot chii-bot bot force-pushed the renovate/vector branch from 8ee5097 to 1d3bad3 Compare February 24, 2025 16:24
| datasource | package         | from   | to     |
| ---------- | --------------- | ------ | ------ |
| docker     | timberio/vector | 0.23.0 | 0.45.0 |
| docker     | timberio/vector | 0.23.0 | 0.45.0 |
| helm       | vector          | 0.14.0 | 0.41.0 |
| helm       | vector          | 0.14.0 | 0.41.0 |
@chii-bot chii-bot bot force-pushed the renovate/vector branch from 1d3bad3 to 386b2c8 Compare February 24, 2025 21:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/cluster Changes made in the cluster directory renovate/container size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. type/patch
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants