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: update helm chart node-feature-discovery to 0.11.0 #453

Merged
merged 1 commit into from
Mar 29, 2022

Conversation

bloopy-boi[bot]
Copy link
Contributor

@bloopy-boi bloopy-boi bot commented Mar 29, 2022

This PR contains the following updates:

Package Update Change
node-feature-discovery minor 0.10.1 -> 0.11.0

Release Notes

kubernetes-sigs/node-feature-discovery

v0.11.0

Compare Source

Changelog
  • Detection of CPU model
  • Detect Intel Control-flow Enforcement Technology (CET)
  • Detect intel-iommu/version attribute of PCI devices
  • Detect IBM Secure Execution (S390x)
  • Helm chart:
    • Support configuring -resource-labels for nfd-master
    • Configurable annotations to DaemonSet (nfd-master) and Deployment (nfd-worker)
    • Create ServiceAccount for nfd-worker
List of PRs
  • README: bump to v0.10.0 (#​720)
  • scripts/update-gh-pages: fix symlink to stable version (#​724)
  • go.mod: bump kubernetes to v1.23.1 (#​725)
  • github: re-organize the release process slightly (#​721)
  • Fix GoLinter Issues in the files (#​711)
  • Multi ARCH build amd64, arm64 (#​698)
  • Adding missing target dep (#​728)
  • cloudbuild.yaml: set HOME to /root (#​730)
  • cloudbuild.yaml: double the timeout (#​731)
  • cloudbuild.yaml: increase timeout to 2400s (#​733)
  • cloudbuild.yaml: increase timeout to 1 hour (#​734)
  • cloudbuild.yaml: increase timeout to 1h 20min (#​735)
  • Increase timeout in test setups (#​738)
  • scripts: configure docker auth in push-image.sh (#​739)
  • cloudbuild.yaml: upgrade machine type to n1-highcpu-8 (#​740)
  • scripts/test-infra: separate task for multiarch image build (#​742)
  • nfd-master: print gRPC server error correctly (#​732)
  • nfd-master: do graceful stop of gRPC server (#​736)
  • cloudbuild.yaml: decrease timeout to 25 minutes (#​741)
  • docs: clarify deployment requirements (#​745)
  • docs: drop topology-updater cmdline help from developer guide (#​748)
  • README: point to v0.10.1 (#​753)
  • docs: update helm document to match values.yaml (#​727)
  • docs: fix operator deployment instructions (#​726)
  • scripts/prepare-release: fix upating of readme (#​755)
  • docs: re-fix operator deployment instructions (#​762)
  • docs: use new custom rule format in worker config reference (#​754)
  • go.mod: update to klauspost/cpuid/v2@​v2.0.11 (#​771)
  • docs: Update default K8S_NAMESPACE (#​773)
  • tls: require min TLS version 1.3 (#​781)
  • Add ServiceAccount for nfd-worker (#​782)
  • Additional Lint Fixes in Codebase (#​779)
  • Fixed the incorrect references (#​769)
  • source/pci: detect intel-iommu/version (#​716)
  • topologyupdater: Prevent crash with incorrect node id (#​783)
  • deployment/helm: add resourceLabels to master args (#​793)
  • Fix a couple typos (#​796)
  • apis/nfd: empty match expression set returns no features for templates (#​787)
  • helm: add annotations to daemonset and deployment (#​794)
  • Add cpu-model feature detection (#​792)
  • cpu: Discover IBM Secure Execution (#​790)

Configuration

📅 Schedule: 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 these updates again.


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

This PR has been generated by Renovate Bot.

@bloopy-boi bloopy-boi bot requested a review from h3mmy as a code owner March 29, 2022 11:34
@bloopy-boi bloopy-boi bot added renovate/helm type/minor size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. labels Mar 29, 2022
@bloopy-boi bloopy-boi bot added the area/cluster Changes made in the cluster directory label Mar 29, 2022
@renovate renovate bot force-pushed the renovate/node-feature-discovery-0.x branch from 5b6d34f to e1a00c8 Compare March 29, 2022 11:34
@bloopy-boi
Copy link
Contributor Author

bloopy-boi bot commented Mar 29, 2022

Path: cluster/apps/kube-system/node-feature-discovery/helm-release.yaml
Version: 0.10.1 -> 0.11.0

@@ -9,6 +9,19 @@
 app.kubernetes.io/instance: node-feature-discovery
 app.kubernetes.io/managed-by: Helm
 ---
+{}
+
+# Source: node-feature-discovery/templates/serviceaccount.yaml
+---
+apiVersion: v1
+kind: ServiceAccount
+metadata:
+ name: node-feature-discovery-worker
+ labels:
+ app.kubernetes.io/name: node-feature-discovery
+ app.kubernetes.io/instance: node-feature-discovery
+ app.kubernetes.io/managed-by: Helm
+---
 # Source: node-feature-discovery/templates/nfd-worker-conf.yaml
 apiVersion: v1
 kind: ConfigMap
@@ -241,9 +254,6 @@
 - ""
 resources:
 - nodes
- # when using command line flag --resource-labels to create extended resources
- # you will need to uncomment "- nodes/status"
- # - nodes/status
 verbs:
 - get
 - patch
@@ -307,6 +317,7 @@
 app.kubernetes.io/instance: node-feature-discovery
 app.kubernetes.io/managed-by: Helm
 role: worker
+ annotations: {}
 spec:
 selector:
 matchLabels:
@@ -323,6 +334,7 @@
 configmap.reloader.stakater.com/reload: node-feature-discovery-worker-conf
 spec:
 dnsPolicy: ClusterFirstWithHostNet
+ serviceAccountName: node-feature-discovery-worker
 securityContext: {}
 containers:
 - name: worker
@@ -333,7 +345,7 @@
 - ALL
 readOnlyRootFilesystem: true
 runAsNonRoot: true
- image: "k8s.gcr.io/nfd/node-feature-discovery:v0.10.1"
+ image: "k8s.gcr.io/nfd/node-feature-discovery:v0.11.0"
 imagePullPolicy: IfNotPresent
 env:
 - name: NODE_NAME
@@ -405,6 +417,7 @@
 app.kubernetes.io/instance: node-feature-discovery
 app.kubernetes.io/managed-by: Helm
 role: master
+ annotations: {}
 spec:
 replicas: 1
 selector:
@@ -431,7 +444,7 @@
 - ALL
 readOnlyRootFilesystem: true
 runAsNonRoot: true
- image: "k8s.gcr.io/nfd/node-feature-discovery:v0.10.1"
+ image: "k8s.gcr.io/nfd/node-feature-discovery:v0.11.0"
 imagePullPolicy: IfNotPresent
 livenessProbe:
 exec:

@h3mmy h3mmy merged commit c6b8243 into main Mar 29, 2022
@h3mmy h3mmy deleted the renovate/node-feature-discovery-0.x branch March 29, 2022 19: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/helm size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. type/minor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant