From abcd26d22262ebbe18628ff20564f560b3dd0819 Mon Sep 17 00:00:00 2001 From: Ryan Eberhard Date: Wed, 21 Aug 2024 16:47:34 -0400 Subject: [PATCH] Move to Hugo 0.133.0 --- .github/workflows/publish-latest-minor-gh-pages.yml | 3 ++- .../accessing-the-domain/weblogic-admin-console.md | 8 ++++---- .../_index.md => managing-fmw-domains.md} | 0 3 files changed, 6 insertions(+), 5 deletions(-) rename documentation/site/content/managing-domains/{managing-fmw-domains/_index.md => managing-fmw-domains.md} (100%) diff --git a/.github/workflows/publish-latest-minor-gh-pages.yml b/.github/workflows/publish-latest-minor-gh-pages.yml index d01df6ab326..9c697173929 100644 --- a/.github/workflows/publish-latest-minor-gh-pages.yml +++ b/.github/workflows/publish-latest-minor-gh-pages.yml @@ -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 @@ -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..." diff --git a/documentation/site/content/managing-domains/accessing-the-domain/weblogic-admin-console.md b/documentation/site/content/managing-domains/accessing-the-domain/weblogic-admin-console.md index 47ab8c66d1b..f6351deee5d 100644 --- a/documentation/site/content/managing-domains/accessing-the-domain/weblogic-admin-console.md +++ b/documentation/site/content/managing-domains/accessing-the-domain/weblogic-admin-console.md @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/documentation/site/content/managing-domains/managing-fmw-domains/_index.md b/documentation/site/content/managing-domains/managing-fmw-domains.md similarity index 100% rename from documentation/site/content/managing-domains/managing-fmw-domains/_index.md rename to documentation/site/content/managing-domains/managing-fmw-domains.md