From 5b20af77e2378af2f54642f689bd2a02cd378d55 Mon Sep 17 00:00:00 2001 From: Jonathan Knight Date: Mon, 21 Apr 2025 16:11:11 +0300 Subject: [PATCH 1/2] Add scale sub resource to editor RBAC files --- config/rbac/coherence_editor_role.yaml | 8 ++++++++ config/rbac/coherencejob_editor_role.yaml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/config/rbac/coherence_editor_role.yaml b/config/rbac/coherence_editor_role.yaml index 7371406f4..d1d59a24d 100644 --- a/config/rbac/coherence_editor_role.yaml +++ b/config/rbac/coherence_editor_role.yaml @@ -28,3 +28,11 @@ rules: - coherence/status verbs: - get + - apiGroups: + - coherence.oracle.com + resources: + - coherence/scale + verbs: + - get + - patch + - update diff --git a/config/rbac/coherencejob_editor_role.yaml b/config/rbac/coherencejob_editor_role.yaml index b9785a170..7044cfd42 100644 --- a/config/rbac/coherencejob_editor_role.yaml +++ b/config/rbac/coherencejob_editor_role.yaml @@ -28,3 +28,11 @@ rules: - coherencejob/status verbs: - get +- apiGroups: + - coherence.oracle.com + resources: + - coherencejob/scale + verbs: + - get + - patch + - update From e871d3602e7329d8aef84892a3f186b154317802 Mon Sep 17 00:00:00 2001 From: Jonathan Knight Date: Tue, 22 Apr 2025 18:12:13 +0300 Subject: [PATCH 2/2] Increase doc link check timeout to one minute --- utils/linkcheck/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/linkcheck/main.go b/utils/linkcheck/main.go index eeab41e86..c9737bc04 100644 --- a/utils/linkcheck/main.go +++ b/utils/linkcheck/main.go @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020, 2023, Oracle and/or its affiliates. + * Copyright (c) 2020, 2025, Oracle and/or its affiliates. * Licensed under the Universal Permissive License v 1.0 as shown at * http://oss.oracle.com/licenses/upl. */ @@ -274,7 +274,7 @@ func checkURL(urlToGet *url.URL, fragments []string) int { fmt.Printf("%s", urlToGet) var netClient = &http.Client{ - Timeout: time.Second * 30, + Timeout: time.Minute * 1, } if resp, err = netClient.Get(urlToGet.String()); err != nil {