Skip to content

Commit bc22aa5

Browse files
committed
Use v3alpha1
1 parent 37da1a5 commit bc22aa5

File tree

30 files changed

+397
-65
lines changed

30 files changed

+397
-65
lines changed

docs/domains/Domain.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@
526526
"$ref": "https://github.com/garethr/kubernetes-json-schema/blob/master/v1.9.0/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
527527
},
528528
"apiVersion": {
529-
"description": "The API version for the Domain. Must be \u0027weblogic.oracle/v3\u0027.",
529+
"description": "The API version for the Domain.",
530530
"type": "string"
531531
},
532532
"kind": {

docs/domains/Domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Domain represents a WebLogic domain and how it will be realized in the Kubernete
44

55
| Name | Type | Description |
66
| --- | --- | --- |
7-
| apiVersion | string | The API version for the Domain. Must be 'weblogic.oracle/v3'. |
7+
| apiVersion | string | The API version for the Domain. |
88
| kind | string | The type of resource. Must be 'Domain'. |
99
| metadata | [Object Meta](k8s1.9.0.md#object-meta) | The domain meta-data. Must include the name and namespace. |
1010
| spec | [Domain Spec](#domain-spec) | The specification of the domain. Required |

docs/domains/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@
845845
"$ref": "https://github.com/garethr/kubernetes-json-schema/blob/master/v1.9.0/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
846846
},
847847
"apiVersion": {
848-
"description": "The API version for the Domain. Must be \u0027weblogic.oracle/v3\u0027.",
848+
"description": "The API version for the Domain.",
849849
"type": "string"
850850
},
851851
"kind": {

integration-tests/src/test/java/oracle/kubernetes/operator/utils/Operator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ private void initialize(String yamlFile) throws Exception {
369369
} else {
370370
operatorMap.put(
371371
"image",
372-
"wlsldi-v3.docker.oraclecorp.com/weblogic-operator"
372+
"wlsldi-v2.docker.oraclecorp.com/weblogic-operator"
373373
+ ":test_"
374374
+ BaseTest.getBranchName().replaceAll("/", "_"));
375375
}

integration-tests/src/test/resources/charts/ingress-per-domain/templates/traefik-ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
name: {{ .Values.wlsDomain.domainUID }}-traefik
1010
namespace: {{ .Release.Namespace }}
1111
labels:
12-
weblogic.resourceVersion: domain-v3
12+
weblogic.resourceVersion: domain-v2
1313
spec:
1414
annotations:
1515
kubernetes.io/ingress.class: traefik

integration-tests/src/test/resources/charts/ingress-per-domain/templates/voyager-ingress.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
name: {{ .Values.wlsDomain.domainUID }}-voyager
1010
namespace: {{ .Release.Namespace }}
1111
labels:
12-
weblogic.resourceVersion: domain-v3
12+
weblogic.resourceVersion: domain-v2
1313
annotations:
1414
ingress.appscode.com/type: 'NodePort'
1515
ingress.appscode.com/stats: 'true'
@@ -31,7 +31,7 @@ metadata:
3131
name: {{ .Values.wlsDomain.domainUID }}-voyager-stats
3232
namespace: {{ .Release.Namespace }}
3333
labels:
34-
weblogic.resourceVersion: domain-v3
34+
weblogic.resourceVersion: domain-v2
3535
spec:
3636
type: NodePort
3737
ports:

kubernetes/samples/charts/apache-webtier/templates/cluster-role-binding.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apiVersion: rbac.authorization.k8s.io/v1beta1
77
metadata:
88
name: {{ template "apache.fullname" . }}
99
labels:
10-
weblogic.resourceVersion: "loadbalancer-v3"
10+
weblogic.resourceVersion: "loadbalancer-v2"
1111
roleRef:
1212
apiGroup: rbac.authorization.k8s.io
1313
kind: ClusterRole

kubernetes/samples/charts/apache-webtier/templates/cluster-role.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apiVersion: rbac.authorization.k8s.io/v1beta1
77
metadata:
88
name: {{ template "apache.fullname" . }}
99
labels:
10-
weblogic.resourceVersion: "loadbalancer-v3"
10+
weblogic.resourceVersion: "loadbalancer-v2"
1111
rules:
1212
- apiGroups:
1313
- ""

kubernetes/samples/charts/apache-webtier/templates/deployment.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ metadata:
88
namespace: {{ .Release.Namespace }}
99
labels:
1010
app: {{ template "apache.fullname" . }}
11-
weblogic.resourceVersion: "loadbalancer-v3"
11+
weblogic.resourceVersion: "loadbalancer-v2"
1212
spec:
1313
replicas: 1
1414
selector:
1515
matchLabels:
1616
app: {{ template "apache.fullname" . }}
17-
weblogic.resourceVersion: "loadbalancer-v3"
17+
weblogic.resourceVersion: "loadbalancer-v2"
1818
template:
1919
metadata:
2020
labels:
2121
app: {{ template "apache.fullname" . }}
22-
weblogic.resourceVersion: "loadbalancer-v3"
22+
weblogic.resourceVersion: "loadbalancer-v2"
2323
spec:
2424
serviceAccountName: {{ template "apache.serviceAccountName" . }}
2525
terminationGracePeriodSeconds: 60

kubernetes/samples/charts/apache-webtier/templates/secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
name: {{ template "apache.fullname" . }}-cert
99
namespace: {{ .Release.Namespace | quote }}
1010
labels:
11-
weblogic.resourceVersion: "loadbalancer-v3"
11+
weblogic.resourceVersion: "loadbalancer-v2"
1212
type: Opaque
1313
data:
1414
tls.crt: {{ .Values.customCert | quote }}

0 commit comments

Comments
 (0)