Skip to content

feat(helm): update chart vector to 0.39.0 #5588

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

Merged
merged 1 commit into from
Jan 10, 2025
Merged

feat(helm): update chart vector to 0.39.0 #5588

merged 1 commit into from
Jan 10, 2025

Conversation

rust84-bot[bot]
Copy link
Contributor

@rust84-bot rust84-bot bot commented Jan 9, 2025

This PR contains the following updates:

Package Update Change
vector (source) minor 0.38.1 -> 0.39.0

Release Notes

vectordotdev/helm-charts (vector)

v0.39.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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@rust84-bot
Copy link
Contributor Author

rust84-bot bot commented Jan 9, 2025

Helm Release: k8s/clusters/cluster-0/manifests/monitoring/vector/agent/helm-release.yaml

(file level)
  - four documents removed:
    ---
    # Source: vector/templates/serviceaccount.yaml
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: vector-agent
    automountServiceAccountToken: true
    # Source: vector/templates/configmap.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: vector-agent
    data:
      vector.yaml: |
        api:
          enabled: false
        data_dir: /vector-data-dir
        sinks:
          loki_kubernetes_sink:
            address: vector-aggregator:6000
            inputs:
            - kubernetes_logs
            type: vector
            version: "2"
        sources:
          kubernetes_logs:
            type: kubernetes_logs
  
    # Source: vector/templates/service-headless.yaml
    apiVersion: v1
    kind: Service
    metadata:
      name: vector-agent-headless
      annotations:
    spec:
      clusterIP: None
      ports:
      - name: loki-kubernetes-sink
        port: 6000
        protocol: TCP
        targetPort: 6000
      selector:
        app.kubernetes.io/name: vector
        app.kubernetes.io/instance: vector-agent
        app.kubernetes.io/component: Agent
      type: ClusterIP
    # Source: vector/templates/daemonset.yaml
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: vector-agent
    spec:
      selector:
        matchLabels:
          app.kubernetes.io/name: vector
          app.kubernetes.io/instance: vector-agent
          app.kubernetes.io/component: Agent
      minReadySeconds: 0
      template:
        metadata: {}
        spec:
          serviceAccountName: vector-agent
          dnsPolicy: ClusterFirst
          containers:
          - name: vector
            securityContext:
              privileged: true
            image: "ghcr.io/onedr0p/vector:0.34.1-debian"
            imagePullPolicy: IfNotPresent
            args:
            - "--config-dir"
            - /etc/vector/
            env:
            - name: VECTOR_LOG
              value: info
            - name: VECTOR_SELF_NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            - name: VECTOR_SELF_POD_NAME
              valueFrom:
                fieldRef:
                  fieldPath: metadata.name
            - name: VECTOR_SELF_POD_NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            - name: PROCFS_ROOT
              value: /host/proc
            - name: SYSFS_ROOT
              value: /host/sys
            ports:
            - name: loki-kubernetes
              containerPort: 6000
              protocol: TCP
            volumeMounts:
            - name: data
              mountPath: /vector-data-dir
            - name: config
              mountPath: /etc/vector/
              readOnly: true
            - mountPath: /var/log/
              name: var-log
              readOnly: true
            - mountPath: /var/lib
              name: var-lib
              readOnly: true
            - mountPath: /host/proc
              name: procfs
              readOnly: true
            - mountPath: /host/sys
              name: sysfs
              readOnly: true
          terminationGracePeriodSeconds: 60
          tolerations:
          - effect: NoSchedule
            key: node-role.kubernetes.io/control-plane
          volumes:
          - name: config
            projected:
              sources:
              - configMap:
                  name: vector-agent
          - name: data
            hostPath:
              path: /var/lib/vector
          - hostPath:
              path: /var/log/
            name: var-log
          - hostPath:
              path: /var/lib/
            name: var-lib
          - hostPath:
              path: /proc
            name: procfs
          - hostPath:
              path: /sys
            name: sysfs
  
    ---
    # Source: vector/templates/serviceaccount.yaml
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: vector-agent
      namespace: default
    automountServiceAccountToken: true
    # Source: vector/templates/configmap.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: vector-agent
      namespace: default
    data:
      vector.yaml: |
        api:
          enabled: false
        data_dir: /vector-data-dir
        sinks:
          loki_kubernetes_sink:
            address: vector-aggregator:6000
            inputs:
            - kubernetes_logs
            type: vector
            version: "2"
        sources:
          kubernetes_logs:
            type: kubernetes_logs
  
    # Source: vector/templates/service-headless.yaml
    apiVersion: v1
    kind: Service
    metadata:
      name: vector-agent-headless
      namespace: default
      annotations:
    spec:
      clusterIP: None
      ports:
      - name: loki-kubernetes-sink
        port: 6000
        protocol: TCP
        targetPort: 6000
      selector:
        app.kubernetes.io/name: vector
        app.kubernetes.io/instance: vector-agent
        app.kubernetes.io/component: Agent
      type: ClusterIP
    # Source: vector/templates/daemonset.yaml
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: vector-agent
      namespace: default
    spec:
      selector:
        matchLabels:
          app.kubernetes.io/name: vector
          app.kubernetes.io/instance: vector-agent
          app.kubernetes.io/component: Agent
      minReadySeconds: 0
      template:
        metadata: {}
        spec:
          serviceAccountName: vector-agent
          dnsPolicy: ClusterFirst
          containers:
          - name: vector
            securityContext:
              privileged: true
            image: "ghcr.io/onedr0p/vector:0.34.1-debian"
            imagePullPolicy: IfNotPresent
            args:
            - "--config-dir"
            - /etc/vector/
            env:
            - name: VECTOR_LOG
              value: info
            - name: VECTOR_SELF_NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            - name: VECTOR_SELF_POD_NAME
              valueFrom:
                fieldRef:
                  fieldPath: metadata.name
            - name: VECTOR_SELF_POD_NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            - name: PROCFS_ROOT
              value: /host/proc
            - name: SYSFS_ROOT
              value: /host/sys
            ports:
            - name: loki-kubernetes
              containerPort: 6000
              protocol: TCP
            volumeMounts:
            - name: data
              mountPath: /vector-data-dir
            - name: config
              mountPath: /etc/vector/
              readOnly: true
            - mountPath: /var/log/
              name: var-log
              readOnly: true
            - mountPath: /var/lib
              name: var-lib
              readOnly: true
            - mountPath: /host/proc
              name: procfs
              readOnly: true
            - mountPath: /host/sys
              name: sysfs
              readOnly: true
          terminationGracePeriodSeconds: 60
          tolerations:
          - effect: NoSchedule
            key: node-role.kubernetes.io/control-plane
          volumes:
          - name: config
            projected:
              sources:
              - configMap:
                  name: vector-agent
          - name: data
            hostPath:
              path: /var/lib/vector
          - hostPath:
              path: /var/log/
            name: var-log
          - hostPath:
              path: /var/lib/
            name: var-lib
          - hostPath:
              path: /proc
            name: procfs
          - hostPath:
              path: /sys
            name: sysfs

@rust84 rust84 merged commit 9d62928 into main Jan 10, 2025
3 checks passed
@rust84-bot rust84-bot bot deleted the renovate/vector branch January 10, 2025 01:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant