56 Commits

Author SHA256 Message Date
32b0bc3193 Accepting request 1302037 from devel:kubic
- Update to version 1.20.0:
  * chore: update release
  * Fix incorrect break
  * Add package comments to pass linters
  * fix lint of files
  * add golangci lint
  * Update Kured to support kubernetes 1.34
  * Fix bad formatting
- Packaging improvements:
  * Update to BuildRequires: golang(API) >= 1.24 matching go.mod
  * Rebase kured-imagePullPolicy.patch
  * Rebase systemctl-path.patch

- Update to version 1.19.0:
  * chore: update release manifests
  * bump kubernetes 0.32 libraries
  * build(deps): bump github/codeql-action from 3.29.10 to 3.29.11
  * build(deps): bump lycheeverse/lychee-action from 2.5.0 to 2.6.1
  * build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1
  * build(deps): bump actions/dependency-review-action from 4.7.2 to 4.7.3
  * build(deps): bump aquasecurity/trivy-action from 0.32.0 to 0.33.0
  * build(deps): bump actions/dependency-review-action from 4.7.1 to 4.7.2
  * build(deps): bump github/codeql-action from 3.29.9 to 3.29.10
  * Reduce periodics frequency
  * Validate external links for md updates only on PR
  * build(deps): bump docker/metadata-action from 5.7.0 to 5.8.0
  * build(deps): bump docker/login-action from 3.4.0 to 3.5.0
  * build(deps): bump lycheeverse/lychee-action from 2.4.1 to 2.5.0
  * build(deps): bump github/codeql-action from 3.29.2 to 3.29.8
  * build(deps): bump actions/checkout from 4.2.2 to 5.0.0 (forwarded request 1302036 from jfkw)

OBS-URL: https://build.opensuse.org/request/show/1302037
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=26
2025-09-01 15:17:41 +00:00
cb0dc2b4dd - Update to version 1.20.0:
* chore: update release
  * Fix incorrect break
  * Add package comments to pass linters
  * fix lint of files
  * add golangci lint
  * Update Kured to support kubernetes 1.34
  * Fix bad formatting
- Packaging improvements:
  * Update to BuildRequires: golang(API) >= 1.24 matching go.mod
  * Rebase kured-imagePullPolicy.patch
  * Rebase systemctl-path.patch

- Update to version 1.19.0:
  * chore: update release manifests
  * bump kubernetes 0.32 libraries
  * build(deps): bump github/codeql-action from 3.29.10 to 3.29.11
  * build(deps): bump lycheeverse/lychee-action from 2.5.0 to 2.6.1
  * build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1
  * build(deps): bump actions/dependency-review-action from 4.7.2 to 4.7.3
  * build(deps): bump aquasecurity/trivy-action from 0.32.0 to 0.33.0
  * build(deps): bump actions/dependency-review-action from 4.7.1 to 4.7.2
  * build(deps): bump github/codeql-action from 3.29.9 to 3.29.10
  * Reduce periodics frequency
  * Validate external links for md updates only on PR
  * build(deps): bump docker/metadata-action from 5.7.0 to 5.8.0
  * build(deps): bump docker/login-action from 3.4.0 to 3.5.0
  * build(deps): bump lycheeverse/lychee-action from 2.4.1 to 2.5.0
  * build(deps): bump github/codeql-action from 3.29.2 to 3.29.8
  * build(deps): bump actions/checkout from 4.2.2 to 5.0.0

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=54
2025-08-30 20:00:51 +00:00
50121f4cc4 Accepting request 1254027 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/1254027
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=25
2025-03-18 16:42:04 +00:00
Richard Brown
05cd538c35 - Update to version 1.17.1:
* Update dependencies addressing CVEs
- Packaging improvements:
  * Rebase patch systemctl-path.patch
  * Temporarily disable %check kured --help until upstream restores
    the --help flag following recent migration from viper + cobra +
    pflags to pflags only. There appear to be no other no-op
    options for the kured command we could use instead for %check
  * Update to BuildRequires: golang(API) >= 1.22 matching go.mod

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=52
2025-03-18 08:19:09 +00:00
07122eb17e Accepting request 1173054 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/1173054
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=24
2024-05-10 10:05:52 +00:00
1600ddc809 Accepting request 1161214 from home:jfkw:branches:devel:kubic
- Update to version 1.15.1:
- Packaging improvements:
  * Rebase kured-imagePullPolicy.patch
  * Rebase systemctl-path.patch
  * _service change disabled to manual per osc deprecation warning:
    WARNING: Command 'disabledrun/dr' is obsolete, please convert
    your _service to use 'manual' and then 'manualrun/mr' instead.
  * Update to BuildRequires: golang(API) >= 1.20 matching go.mod
  * Re-enable binary stripping and debuginfo boo#1210938
  * Drop BuildRequires: go-md2man and use plain markdown as %doc
  * Drop BuildRequires: fdupes and usage during install step. Go
    application packages have a small number of installed files and
    this hasn't been an issue following the transition from GOPATH
  * Drop ExcludeArch: s390
  * Remove ldflags -X entries for upstream import path and version.
    This information is embedded in binaries with go1.18+ and
    available via go version -m or runtime/debug.ReadBuildInfo().
  * Remove define git commit ref no longer needed
  * Build PIE with pattern that may become recommended procedure:
    %%ifnarch ppc64 GOFLAGS="-buildmode=pie" %%endif go build
    A go toolchain buildmode default config would be preferable
    but none exist at this time.
  * Drop mod=vendor, go1.14+ will detect vendor dir and auto-enable
  * Add basic %check to execute binary --help

OBS-URL: https://build.opensuse.org/request/show/1161214
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=50
2024-05-10 08:03:32 +00:00
1f2d14b4ae Accepting request 1152951 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/1152951
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=23
2024-02-28 18:48:05 +00:00
Richard Brown
df101d6c70 Accepting request 1149312 from home:dimstar:rpm4.20:k
Prepare for RPM 4.20

OBS-URL: https://build.opensuse.org/request/show/1149312
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=48
2024-02-28 14:32:32 +00:00
b8262299c1 Accepting request 1124963 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/1124963
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=22
2023-11-14 20:41:47 +00:00
Richard Brown
ff1e97c9e5 Accepting request 1123740 from home:dimstar:Factory
Fix build with RPM 4.19: unnumbered patches are no longer supported.

OBS-URL: https://build.opensuse.org/request/show/1123740
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=46
2023-11-10 12:48:44 +00:00
7e4dc3d6fb Accepting request 1002907 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/1002907
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=21
2022-09-12 17:08:55 +00:00
Richard Brown
0f59c2d2ce Accepting request 1001761 from home:ojkastl_buildservice:Branch_devel_kubic
update to 1.10.2

OBS-URL: https://build.opensuse.org/request/show/1001761
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=44
2022-09-12 11:58:06 +00:00
7e4392e3ba Accepting request 986895 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/986895
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=20
2022-07-06 13:41:57 +00:00
9f8014b015 Accepting request 986308 from home:jfkw:branches:devel:kubic
- Update to version 1.10.1:
- Refresh kured-imagePullPolicy.patch
- Update to BuildRequires: golang(API) >= 1.17 from pinned 1.16

OBS-URL: https://build.opensuse.org/request/show/986308
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=42
2022-07-05 15:15:55 +00:00
a3cb05afb6 Accepting request 944738 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/944738
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=19
2022-01-09 21:49:53 +00:00
bd252875bb Accepting request 944733 from home:ojkastl_buildservice:Branch_devel_kubic
update to 1.9.1 (including rebase of patches)

OBS-URL: https://build.opensuse.org/request/show/944733
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=41
2022-01-07 13:08:17 +00:00
5aeb8303a2 Accepting request 868637 from devel:kubic
- Update to version 1.6.1:
  - add additional parameters to override the drain/reboot slack messages
  - rename message template parameters so they are not related to slack
  - Improve coordinated reboot output
  - Add more logs into gates
  - Added support for time wrap in timewindow.Contains

OBS-URL: https://build.opensuse.org/request/show/868637
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=18
2021-02-07 14:14:13 +00:00
60b49f9ce3 - Update to version 1.6.1:
- add additional parameters to override the drain/reboot slack messages
  - rename message template parameters so they are not related to slack
  - Improve coordinated reboot output
  - Add more logs into gates
  - Added support for time wrap in timewindow.Contains

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=39
2021-02-02 12:21:11 +00:00
a673ff6c2c Accepting request 850527 from devel:kubic
- Update to version 1.5.1:
  * rename annotation-ttl to lock-ttl in all places, follow-up to #213
  * Drain: allow pods grace period to terminate
  * Prepare 1.5.1 release
  * Add lint job
  * Make lint happier in pkg folder
  * Make lint happier
  * Remove prom-active-alerts
  * update docs following #210
  * run 'go mod tidy'
  * Replaced --annotationTTL with --lockTTL and made it work correctly
  * Refactor drain/uncordon
  * Remove kubectl exception in container scanning
  * Bump prometheus
  * Use kubectl as library instead of calling from cli
  * fix: Follow DKL-DI-0004 guideline
  * feat: Add security scanning into CI
  * add missing quote - thanks Karan Arora for reporting
  * Bump helm chart version
  * Remove quote for parameter alert-filter-regexp
  * Release helper

OBS-URL: https://build.opensuse.org/request/show/850527
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=17
2020-11-25 18:27:42 +00:00
a84d985734 - Update to version 1.5.1:
* rename annotation-ttl to lock-ttl in all places, follow-up to #213
  * Drain: allow pods grace period to terminate
  * Prepare 1.5.1 release
  * Add lint job
  * Make lint happier in pkg folder
  * Make lint happier
  * Remove prom-active-alerts
  * update docs following #210
  * run 'go mod tidy'
  * Replaced --annotationTTL with --lockTTL and made it work correctly
  * Refactor drain/uncordon
  * Remove kubectl exception in container scanning
  * Bump prometheus
  * Use kubectl as library instead of calling from cli
  * fix: Follow DKL-DI-0004 guideline
  * feat: Add security scanning into CI
  * add missing quote - thanks Karan Arora for reporting
  * Bump helm chart version
  * Remove quote for parameter alert-filter-regexp
  * Release helper

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=37
2020-11-24 15:08:37 +00:00
d738ff879d Accepting request 835813 from devel:kubic
- Update to version 1.5.0:
  * Prepare 1.5.0 release
  * Bump helm/kind-action from v1.0.0-rc.1 to v1.0.0
  * Bump helm/chart-testing-action from v1.0.0-rc.2 to v1.0.0
  * Add dependabot
  * Prepare for k8s release 1.19 (Aug 25)

OBS-URL: https://build.opensuse.org/request/show/835813
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=16
2020-09-24 14:13:08 +00:00
ad9d616b8a OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=35 2020-09-21 11:46:59 +00:00
42aa2cb9aa - Update to version 1.5.0:
* Prepare 1.5.0 release
  * Bump helm/kind-action from v1.0.0-rc.1 to v1.0.0
  * Bump helm/chart-testing-action from v1.0.0-rc.2 to v1.0.0
  * Add dependabot
  * update alpine to 3.12, k8s 1.18.8
  * Prepare for k8s release 1.19 (Aug 25)

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=34
2020-09-21 11:46:42 +00:00
8b4bb5e01f Accepting request 826666 from devel:kubic
- Update to version 1.4.5:
  * document how releases are town wrt Helm bits
  * bump versions for 1.4.5 release
  * Use nindent, not indent
  * chart: update readme
  * Bump chart version
  * Add missing 'end'
  * Chart: Support extraEnvVars
  * update install instructions to use latest
  * update chart version
  * Prep for 1.4.4 release
  * bump and fix
  * split matchLabels template
  * restructured and improved service

OBS-URL: https://build.opensuse.org/request/show/826666
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=15
2020-08-16 18:26:26 +00:00
83453c734b - Update to version 1.4.5:
* document how releases are town wrt Helm bits
  * bump versions for 1.4.5 release
  * Use nindent, not indent
  * chart: update readme
  * Bump chart version
  * Add missing 'end'
  * Chart: Support extraEnvVars
  * update install instructions to use latest
  * update chart version
  * Prep for 1.4.4 release
  * bump and fix
  * split matchLabels template
  * restructured and improved service

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=32
2020-08-14 11:46:12 +00:00
409a0ac489 Accepting request 818055 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/818055
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=14
2020-07-01 16:22:36 +00:00
Richard Brown
bc7532d273 Accepting request 817952 from home:dirkmueller:branches:devel:kubic
- Update to version 1.4.3:
  * bump and fix
  * split matchLabels template
  * restructured and improved service
  * bumped kured to upcoming 1.4.3 fixed servicemonitor indent fixed quotes for arguments
  * update things for 1.4.2 release
  * Use GITHUB_TOKEN for releasing chart
  * make markdownlint happier
  * update version
  * prepare chart-release for 1.4.1
  * Revert #139
- use obs-service for regenerating vendor.tar.gz

OBS-URL: https://build.opensuse.org/request/show/817952
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=30
2020-07-01 09:21:53 +00:00
fb0c9f6bc6 - Update to version 1.4.2
- Adding --annotation-ttl for automatic unlock
- Refresh vendor.tar.xz

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=29
2020-06-30 12:49:43 +00:00
c40ea44047 Accepting request 806776 from devel:kubic
- kured-imagePullPolicy.patch: always update the image

- systemctl-path.patch: last systemd update removed symlinks 
  from /bin ...

OBS-URL: https://build.opensuse.org/request/show/806776
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=13
2020-05-20 16:43:46 +00:00
d52bcb2aeb - kured-imagePullPolicy.patch: always update the image
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=27
2020-05-18 07:37:27 +00:00
4499d2e6c0 - systemctl-path.patch: last systemd update removed symlinks
from /bin ...

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=26
2020-05-17 12:17:44 +00:00
b17deed3d8 Accepting request 802728 from devel:kubic
- Update to version 1.4.0
  - Updated kubectl, client-go, etc to k8s 1.17 (#127, #135)
  - Update to go 1.13 (#130)
  - print node id when commanding reboot (#134)

OBS-URL: https://build.opensuse.org/request/show/802728
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=12
2020-05-12 20:27:45 +00:00
dd78e3c124 - Update to version 1.4.0
- Updated kubectl, client-go, etc to k8s 1.17 (#127, #135)
  - Update to go 1.13 (#130)
  - print node id when commanding reboot (#134)

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=24
2020-05-11 15:29:42 +00:00
c059a746f9 Accepting request 796462 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/796462
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=11
2020-05-01 09:07:19 +00:00
Richard Brown
889291d7df Accepting request 796259 from home:dimstar:Factory
- Fix build-dependency: we require golang(API) 1.12, not the exact
  go package version 1.12.

OBS-URL: https://build.opensuse.org/request/show/796259
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=22
2020-04-23 09:24:54 +00:00
3641ac903f Accepting request 780993 from devel:kubic
- Update to version 1.3.0
  - Update k8s client tools to 1.15.x
  - Ad Slack channel name configuration
  - Add reboot window
- Obsoletes k8s-1.14.diff 
- Remove kured-telemetrics.patch, chances that upstream accepts
  any third party code are nearly zero.
- Update vendor.tar.xz

OBS-URL: https://build.opensuse.org/request/show/780993
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=10
2020-03-05 22:17:12 +00:00
dc4e35c138 - Update to version 1.3.0
- Update k8s client tools to 1.15.x
  - Ad Slack channel name configuration
  - Add reboot window
- Obsoletes k8s-1.14.diff 
- Remove kured-telemetrics.patch, chances that upstream accepts
  any third party code are nearly zero.
- Update vendor.tar.xz

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=20
2020-03-02 14:43:36 +00:00
c7097cd51d Accepting request 711690 from devel:kubic
- k8s-1.14.diff: kubernetes 1.14.1 support from git

OBS-URL: https://build.opensuse.org/request/show/711690
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=9
2019-06-30 08:14:40 +00:00
6f3db03dc1 - k8s-1.14.diff: kubernetes 1.14.1 support from git
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=18
2019-06-24 13:34:09 +00:00
e75526857e Accepting request 707776 from devel:kubic
- Fix path to image in manifest

OBS-URL: https://build.opensuse.org/request/show/707776
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=8
2019-06-07 10:16:43 +00:00
d5bb1e5605 - Fix path to image in manifest
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=16
2019-06-05 08:54:45 +00:00
0354de2812 Accepting request 704695 from devel:kubic
- Update to version 1.2.0
  - support newer kubernetes versions
- Adjust kured-telemetrics.patch
- Update vendor.tar.gz with recent versions

OBS-URL: https://build.opensuse.org/request/show/704695
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=7
2019-06-03 16:42:54 +00:00
87eb4b96d3 - Update to version 1.2.0
- support newer kubernetes versions
- Adjust kured-telemetrics.patch
- Update vendor.tar.gz with recent versions

OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=14
2019-05-22 09:06:40 +00:00
6c4f397c4b Accepting request 692072 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/692072
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=6
2019-04-10 21:09:44 +00:00
173dc51312 Accepting request 691926 from home:kukuk:container
- Enable building on s390x

OBS-URL: https://build.opensuse.org/request/show/691926
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=12
2019-04-07 02:01:19 +00:00
08c136bf9c Accepting request 689655 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/689655
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=5
2019-03-29 19:33:40 +00:00
df831bf828 Accepting request 689448 from home:jengelh:branches:devel:kubic
- Combine %setup calls.

OBS-URL: https://build.opensuse.org/request/show/689448
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=10
2019-03-29 06:14:52 +00:00
Richard Brown
40eb2d8c48 Accepting request 689311 from home:kukuk:container
- kured-telemetrics.patch: add hooks for telemetrics data
- Renamed kured-yaml to kured-k8s-yaml to follow new policy

OBS-URL: https://build.opensuse.org/request/show/689311
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=9
2019-03-28 13:15:07 +00:00
de86bfbf52 Accepting request 680197 from devel:kubic
- Change path in yaml file to point to official container image (forwarded request 680196 from kukuk)

OBS-URL: https://build.opensuse.org/request/show/680197
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kured?expand=0&rev=4
2019-03-01 15:48:49 +00:00
f5797d09f1 Accepting request 680196 from home:kukuk:branches:devel:kubic
- Change path in yaml file to point to official container image

OBS-URL: https://build.opensuse.org/request/show/680196
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/kured?expand=0&rev=7
2019-02-28 18:55:29 +00:00