File tree Expand file tree Collapse file tree 8 files changed +12
-26
lines changed Expand file tree Collapse file tree 8 files changed +12
-26
lines changed Original file line number Diff line number Diff line change 11apiVersion : v1
2- entries :
3- weblogic-operator :
4- - created : 2019-02-13T14:31:18.637128976-08:00
5- description : Helm package for creation of the Weblogic operator.
6- digest : de086ca50a523ec94afc216b0b45ca7d431c6c9c454ea5d26c1ccd76220a5e7f
7- name : weblogic-operator
8- urls :
9- - https://oracle.github.io/weblogic-kubernetes-operator/charts/weblogic-operator-2.tgz
10- version : " 2"
11- generated : 2019-02-13T14:31:18.636253861-08:00
2+ entries : {}
3+ generated : 2019-02-14T12:10:28.288131-05:00
Original file line number Diff line number Diff line change 22# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
33
44name : weblogic-operator
5- version : 2.0
5+ version : 2.1
66description : Helm package for creation of the Weblogic operator.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ serviceAccount: "default"
1818domainNamespaces : [ "default" ]
1919
2020# image specifies the docker image containing the operator code.
21- image : " weblogic-kubernetes-operator:1 .1"
21+ image : " oracle/ weblogic-kubernetes-operator:2 .1"
2222
2323# imagePullPolicy specifies the image pull policy for the operator docker image.
2424imagePullPolicy : " IfNotPresent"
Original file line number Diff line number Diff line change @@ -23,16 +23,21 @@ out="$(helm package $WOCHARTPATH -d $SCRIPTPATH)"
2323helm_package=$( echo $out | cut -d ' :' -f 2)
2424helm_package_name=$( basename $helm_package )
2525
26- dsttime=" $( stat $mod_time_fmt $SCRIPTPATH /../docs/charts/$helm_package_name ) "
26+ dsttime=0
27+ if [ -f $SCRIPTPATH /../docs/charts/$helm_package_name ]; then
28+ dsttime=" $( stat $mod_time_fmt $SCRIPTPATH /../docs/charts/$helm_package_name ) "
29+ fi
2730
2831if [ $srctime \> $dsttime ];
2932then
33+ mkdir $SCRIPTPATH /../docs/charts
3034 helm repo index $WOCHARTPATH / --url https://oracle.github.io/weblogic-kubernetes-operator/charts
3135
32- cp $WOCHARTPATH /index.yaml $SCRIPTPATH /../docs/charts
33- mv $helm_package $SCRIPTPATH /../docs/charts/ -f
36+ mv -f $WOCHARTPATH /index.yaml $SCRIPTPATH /../docs/charts
37+ mv -f $helm_package $SCRIPTPATH /../docs/charts/
3438else
3539 rm $helm_package
40+ rm $WOCHARTPATH /index.yaml
3641fi ;
3742
3843
You can’t perform that action at this time.
0 commit comments