Skip to content

Add scale sub resource to the Coherence Editor roles #731

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

Merged
merged 2 commits into from
Apr 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions config/rbac/coherence_editor_role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,11 @@ rules:
- coherence/status
verbs:
- get
- apiGroups:
- coherence.oracle.com
resources:
- coherence/scale
verbs:
- get
- patch
- update
8 changes: 8 additions & 0 deletions config/rbac/coherencejob_editor_role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,11 @@ rules:
- coherencejob/status
verbs:
- get
- apiGroups:
- coherence.oracle.com
resources:
- coherencejob/scale
verbs:
- get
- patch
- update
4 changes: 2 additions & 2 deletions utils/linkcheck/main.go
Original file line number Diff line number Diff line change
@@ -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.
*/
Expand Down Expand Up @@ -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 {
Expand Down
Loading