Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package polaris for openSUSE:Factory checked in at 2024-02-22 21:01:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/polaris (Old) and /work/SRC/openSUSE:Factory/.polaris.new.1706 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "polaris" Thu Feb 22 21:01:14 2024 rev:26 rq:1149398 version:8.5.5 Changes: -------- --- /work/SRC/openSUSE:Factory/polaris/polaris.changes 2024-01-05 21:45:16.674761751 +0100 +++ /work/SRC/openSUSE:Factory/.polaris.new.1706/polaris.changes 2024-02-22 21:02:21.671598066 +0100 @@ -1,0 +2,6 @@ +Wed Feb 14 19:59:13 UTC 2024 - [email protected] + +- Update to version 8.5.5: + * fix missing PDB check (#1027) + +------------------------------------------------------------------- Old: ---- polaris-8.5.4.obscpio New: ---- polaris-8.5.5.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ polaris.spec ++++++ --- /var/tmp/diff_new_pack.RPzv9L/_old 2024-02-22 21:02:24.683708183 +0100 +++ /var/tmp/diff_new_pack.RPzv9L/_new 2024-02-22 21:02:24.683708183 +0100 @@ -19,7 +19,7 @@ %define __arch_install_post export NO_BRP_STRIP_DEBUG=true Name: polaris -Version: 8.5.4 +Version: 8.5.5 Release: 0 Summary: Validation of best practices in your Kubernetes clusters License: Apache-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.RPzv9L/_old 2024-02-22 21:02:24.707709061 +0100 +++ /var/tmp/diff_new_pack.RPzv9L/_new 2024-02-22 21:02:24.711709207 +0100 @@ -3,7 +3,7 @@ <param name="url">https://github.com/FairwindsOps/polaris</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">8.5.4</param> + <param name="revision">8.5.5</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> </service> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.RPzv9L/_old 2024-02-22 21:02:24.731709938 +0100 +++ /var/tmp/diff_new_pack.RPzv9L/_new 2024-02-22 21:02:24.731709938 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/FairwindsOps/polaris</param> - <param name="changesrevision">c8394bf9d7700d90ed67dfd9d56bf1a8cbb36721</param></service></servicedata> + <param name="changesrevision">e60793a0226c7c158a91f8f2180f80b162744d94</param></service></servicedata> (No newline at EOF) ++++++ polaris-8.5.4.obscpio -> polaris-8.5.5.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/polaris-8.5.4/checks/missingPodDisruptionBudget.yaml new/polaris-8.5.5/checks/missingPodDisruptionBudget.yaml --- old/polaris-8.5.4/checks/missingPodDisruptionBudget.yaml 2024-01-03 21:17:04.000000000 +0100 +++ new/polaris-8.5.5/checks/missingPodDisruptionBudget.yaml 2024-02-13 19:13:11.000000000 +0100 @@ -9,12 +9,18 @@ '$schema': http://json-schema.org/draft-07/schema type: object properties: - metadata: + spec: type: object properties: - labels: + template: type: object - minProperties: 1 + properites: + metadata: + type: object + properties: + labels: + type: object + minProperties: 1 additionalSchemaStrings: policy/PodDisruptionBudget: | type: object @@ -30,7 +36,7 @@ matchLabels: type: object anyOf: - {{ range $key, $value := .metadata.labels }} + {{ range $key, $value := .spec.template.metadata.labels }} - properties: "{{ $key }}": type: string diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/polaris-8.5.4/test/checks/missingPodDisruptionBudget/failure.wrong-place.yaml new/polaris-8.5.5/test/checks/missingPodDisruptionBudget/failure.wrong-place.yaml --- old/polaris-8.5.4/test/checks/missingPodDisruptionBudget/failure.wrong-place.yaml 1970-01-01 01:00:00.000000000 +0100 +++ new/polaris-8.5.5/test/checks/missingPodDisruptionBudget/failure.wrong-place.yaml 2024-02-13 19:13:11.000000000 +0100 @@ -0,0 +1,23 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: zookeeper + labels: + app.kubernetes.io/name: zookeeper + foo: bar +spec: + template: + spec: + containers: + - name: zookeeper + image: zookeeper +--- +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + name: zookeeper-pdb +spec: + minAvailable: 2 + selector: + matchLabels: + app.kubernetes.io/name: zookeeper diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/polaris-8.5.4/test/checks/missingPodDisruptionBudget/success.many.yaml new/polaris-8.5.5/test/checks/missingPodDisruptionBudget/success.many.yaml --- old/polaris-8.5.4/test/checks/missingPodDisruptionBudget/success.many.yaml 2024-01-03 21:17:04.000000000 +0100 +++ new/polaris-8.5.5/test/checks/missingPodDisruptionBudget/success.many.yaml 2024-02-13 19:13:11.000000000 +0100 @@ -2,10 +2,11 @@ kind: Deployment metadata: name: zookeeper - labels: - app.kubernetes.io/name: zookeeper spec: template: + metadata: + labels: + app.kubernetes.io/name: zookeeper spec: containers: - name: zookeeper diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/polaris-8.5.4/test/checks/missingPodDisruptionBudget/success.yaml new/polaris-8.5.5/test/checks/missingPodDisruptionBudget/success.yaml --- old/polaris-8.5.4/test/checks/missingPodDisruptionBudget/success.yaml 2024-01-03 21:17:04.000000000 +0100 +++ new/polaris-8.5.5/test/checks/missingPodDisruptionBudget/success.yaml 2024-02-13 19:13:11.000000000 +0100 @@ -2,10 +2,12 @@ kind: Deployment metadata: name: zookeeper - labels: - app.kubernetes.io/name: zookeeper spec: template: + metadata: + labels: + app.kubernetes.io/name: zookeeper + foo: bar spec: containers: - name: zookeeper ++++++ polaris.obsinfo ++++++ --- /var/tmp/diff_new_pack.RPzv9L/_old 2024-02-22 21:02:25.011720175 +0100 +++ /var/tmp/diff_new_pack.RPzv9L/_new 2024-02-22 21:02:25.011720175 +0100 @@ -1,5 +1,5 @@ name: polaris -version: 8.5.4 -mtime: 1704313024 -commit: c8394bf9d7700d90ed67dfd9d56bf1a8cbb36721 +version: 8.5.5 +mtime: 1707847991 +commit: e60793a0226c7c158a91f8f2180f80b162744d94 ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/polaris/vendor.tar.gz /work/SRC/openSUSE:Factory/.polaris.new.1706/vendor.tar.gz differ: char 5, line 1
