File tree Expand file tree Collapse file tree 5 files changed +7
-9
lines changed
main/java/oracle/kubernetes/operator/helpers
test/java/oracle/kubernetes/operator/helpers Expand file tree Collapse file tree 5 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
entries :
3
3
weblogic-operator :
4
- - created : 2019-02-06T10:58:20.175515059-08 :00
5
- description : Helm package for creation of the Weblogic operator.
6
- digest : de086ca50a523ec94afc216b0b45ca7d431c6c9c454ea5d26c1ccd76220a5e7f
4
+ - created : 2019-02-14T14:24:39.055209-05 :00
5
+ description : Helm chart for configuring the WebLogic operator.
6
+ digest : b3d5d765758da69dc6020dd47e84d532ba9464630c010aafbbf97e9c38495aec
7
7
name : weblogic-operator
8
8
urls :
9
9
- https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.1.tgz
10
10
version : " 2.1"
11
- generated : 2019-02-06T10:58:20.173792276-08 :00
11
+ generated : 2019-02-14T14:24:39.053451-05 :00
Original file line number Diff line number Diff line change 31
31
if [ $srctime \> $dsttime ];
32
32
then
33
33
mkdir $SCRIPTPATH /../docs/charts
34
- helm repo index $WOCHARTPATH / --url https://oracle.github.io/weblogic-kubernetes-operator/charts --merge $SCRIPTPATH /../docs/charts/index.yaml
35
-
36
34
mv -f $helm_package $SCRIPTPATH /../docs/charts/
37
- rm $WOCHARTPATH /index.yaml
35
+ helm repo index $SCRIPTPATH /../docs/charts/ --url https://oracle.github.io/weblogic-kubernetes-operator/charts
38
36
else
39
37
rm $helm_package
40
38
fi ;
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ public abstract class PodStepContext extends StepContextBase {
69
69
private static final String START_SERVER = "/weblogic-operator/scripts/startServer.sh" ;
70
70
private static final String LIVENESS_PROBE = "/weblogic-operator/scripts/livenessProbe.sh" ;
71
71
72
- private static final String READINESS_PATH = "/weblogic" ;
72
+ private static final String READINESS_PATH = "/weblogic/ " ;
73
73
74
74
private final DomainPresenceInfo info ;
75
75
private final WlsDomainConfig domainTopology ;
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ public void whenPodCreated_livenessProbeHasDefinedTuning() {
278
278
@ Test
279
279
public void whenPodCreated_readinessProbeHasReadinessCommand () {
280
280
V1HTTPGetAction getAction = getCreatedPodSpecContainer ().getReadinessProbe ().getHttpGet ();
281
- assertThat (getAction .getPath (), equalTo ("/weblogic" ));
281
+ assertThat (getAction .getPath (), equalTo ("/weblogic/ " ));
282
282
assertThat (getAction .getPort ().getIntValue (), equalTo (listenPort ));
283
283
}
284
284
You can’t perform that action at this time.
0 commit comments