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 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 {