Skip to content

Commit

Permalink
Move to Hugo 0.133.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeberhard committed Aug 21, 2024
1 parent 9c53fcb commit abcd26d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish-latest-minor-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Build and publish site
run: |
curl -fL -o hugo.tar.gz "https://github.com/gohugoio/hugo/releases/download/v0.108.0/hugo_0.108.0_Linux-64bit.tar.gz"
curl -fL -o hugo.tar.gz "https://github.com/gohugoio/hugo/releases/download/v0.133.0/hugo_0.133.0_Linux-64bit.tar.gz"
tar -xf hugo.tar.gz
export PATH="$PWD:$PATH"
mkdir $GITHUB_WORKSPACE/WORK
Expand All @@ -50,6 +50,7 @@ jobs:
latest_tag=$(git ls-remote https://github.com/oracle/weblogic-kubernetes-operator.git --h --sort origin "refs/tags/v*" | cut -f2 | grep v4.1 | tail -1 | cut -c12-)
echo "Latest tag is $latest_tag..."
echo $latest_tag >| $GITHUB_WORKSPACE/branch/documentation/site/layouts/shortcodes/latestVersion.html
cat $GITHUB_WORKSPACE/branch/documentation/site/layouts/shortcodes/latestVersion.html
echo "Building documentation for latest minor version..."
hugo -s site -d "$GITHUB_WORKSPACE/WORK" -b https://oracle.github.io/weblogic-kubernetes-operator
echo "Copying static files into place..."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The following example sets up an ingress path routing rule to access a WebLogic

`$ export LB_PORT=$(kubectl -n traefik get service traefik-operator -o jsonpath='{.spec.ports[?(@.name=="web")].nodePort}')`

If you have an [FMW Infrastructure]({{< relref "/managing-fmw-domains.md" >}}) domain, then you can add an ingress path routing rule for the PathPrefix `/em` and access Fusion Middleware Control (Enterprise Manager) using the following URL:
If you have an [FMW Infrastructure]({{< relref "/managing-domains/managing-fmw-domains.md" >}}) domain, then you can add an ingress path routing rule for the PathPrefix `/em` and access Fusion Middleware Control (Enterprise Manager) using the following URL:

```
http://${HOSTNAME}:${LB_PORT}/em
Expand Down Expand Up @@ -152,7 +152,7 @@ The following example sets up load balancer routing for access to the WebLogic S
https://${HOSTNAME}:${SSLPORT}/console
```

If you have an [FMW Infrastructure]({{< relref "/managing-fmw-domains.md" >}}) domain, then you can add an ingress path routing rule for the PathPrefix `/em` and access Fusion Middleware Control (Enterprise Manager) using the following URL:
If you have an [FMW Infrastructure]({{< relref "/managing-domains/managing-fmw-domains.md" >}}) domain, then you can add an ingress path routing rule for the PathPrefix `/em` and access Fusion Middleware Control (Enterprise Manager) using the following URL:

```
https://${HOSTNAME}:${SSLPORT}/em
Expand All @@ -173,7 +173,7 @@ Use the following steps to configure a `NodePort` to access the WebLogic Server
```
The `adminserver-NodePort` is the port number of the Administration Server outside the Kubernetes cluster.

If you have an [FMW Infrastructure]({{< relref "/managing-fmw-domains.md" >}}) domain, then you can also access Fusion Middleware Control (Enterprise Manager) using the following URL:
If you have an [FMW Infrastructure]({{< relref "/managing-domains/managing-fmw-domains.md" >}}) domain, then you can also access Fusion Middleware Control (Enterprise Manager) using the following URL:

```
http://hostname:adminserver-NodePort/em
Expand Down Expand Up @@ -206,7 +206,7 @@ A Kubernetes port forward command is convenient for development use cases but is

* `${LOCAL_PORT}` is the local port specified on the `kubectl port-forward` command line.

If you have an [FMW Infrastructure]({{< relref "/managing-fmw-domains.md" >}}) domain, then you can also access Fusion Middleware Control (Enterprise Manager) using the following URL:
If you have an [FMW Infrastructure]({{< relref "/managing-domains/managing-fmw-domains.md" >}}) domain, then you can also access Fusion Middleware Control (Enterprise Manager) using the following URL:

```
http://${HOSTNAME}:${LOCAL_PORT}/em
Expand Down

0 comments on commit abcd26d

Please sign in to comment.