Skip to content

Commit b29cc85

Browse files
committed
Merge remote-tracking branch 'origin/main' into release/4.0
2 parents f657aca + 66dc9b3 commit b29cc85

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

kubernetes/charts/weblogic-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018, 2021, Oracle and/or its affiliates.
1+
# Copyright (c) 2018, 2022, Oracle and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: v1

kubernetes/charts/weblogic-operator/templates/_operator-clusterrole-domain-admin.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ rules:
3232
resources: ["pods/exec"]
3333
verbs: ["get", "create"]
3434
- apiGroups: ["weblogic.oracle"]
35-
resources: ["clusters", "domains"]
35+
resources: ["domains", "clusters"]
3636
verbs: ["get", "list", "watch", "create", "update", "patch", "delete", "deletecollection"]
3737
- apiGroups: ["weblogic.oracle"]
38-
resources: ["domains/status"]
38+
resources: ["domains/status", "clusters/status"]
3939
verbs: ["get", "watch"]
4040
{{- end }}

kubernetes/charts/weblogic-operator/templates/_operator-clusterrole-general.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ rules:
2828
verbs: ["get", "list", "watch", "create", "update", "patch"]
2929
{{- end }}
3030
- apiGroups: ["weblogic.oracle"]
31-
resources: ["clusters", "domains", "domains/status", "clusters/status"]
31+
resources: ["domains", "clusters", "domains/status", "clusters/status"]
3232
verbs: ["get", "create", "list", "watch", "update", "patch"]
3333
- apiGroups: ["authentication.k8s.io"]
3434
resources: ["tokenreviews"]

kubernetes/charts/weblogic-operator/templates/_operator-dep.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ spec:
114114
runAsNonRoot: true
115115
seccompProfile:
116116
type: RuntimeDefault
117-
{{- end }}
117+
{{- end }}
118118
volumeMounts:
119119
- name: "weblogic-operator-cm-volume"
120120
mountPath: "/deployment/config"

kubernetes/charts/weblogic-operator/templates/_operator-external-svc.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018, 2021, Oracle and/or its affiliates.
1+
# Copyright (c) 2018, 2022, Oracle and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
{{- define "operator.operatorExternalService" }}

kubernetes/src/test/java/oracle/kubernetes/operator/create/CreateOperatorGeneratedFilesTestBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,8 +450,8 @@ private V1ClusterRole getExpectedWeblogicOperatorClusterRole() {
450450
.addRulesItem(
451451
newPolicyRule()
452452
.addApiGroupsItem("weblogic.oracle")
453-
.addResourcesItem("clusters")
454453
.addResourcesItem("domains")
454+
.addResourcesItem("clusters")
455455
.addResourcesItem("domains/status")
456456
.addResourcesItem("clusters/status")
457457
.verbs(asList("get", "create", "list", "watch", "update", "patch")))

0 commit comments

Comments
 (0)