Skip to content

Commit 08ee31c

Browse files
committed
Merge branch 'hugo-relearn-theme' into 'main'
Moving to Hugo relearn theme See merge request weblogic-cloud/weblogic-kubernetes-operator!5064
2 parents 14f61df + 187b306 commit 08ee31c

File tree

745 files changed

+46102
-6170
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

745 files changed

+46102
-6170
lines changed

.github/workflows/publish-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Build and publish site
5050
run: |
51-
curl -fL -o hugo.tar.gz "https://github.com/gohugoio/hugo/releases/download/v0.133.0/hugo_0.133.0_Linux-64bit.tar.gz"
51+
curl -fL -o hugo.tar.gz "https://github.com/gohugoio/hugo/releases/download/v0.152.2/hugo_0.152.2.0_Linux-64bit.tar.gz"
5252
tar -xf hugo.tar.gz
5353
export PATH="$PWD:$PATH"
5454
mkdir $GITHUB_WORKSPACE/WORK

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,4 @@ dependency-reduced-pom.xml
4747
docs-source/docs
4848
.git/logs
4949
**/.hugo_build.lock
50+
documentation/**/docs

documentation/site/config.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ languageCode = "en-us"
66
title = "WebLogic Kubernetes Operator"
77

88
# Change the default theme to be use when building the site with Hugo
9-
theme = "hugo-theme-learn"
9+
theme = "hugo-theme-relearn-8.3.0"
1010

1111
publishDir = "docs"
1212

@@ -17,11 +17,17 @@ canonifyURLs = true
1717
home = [ "HTML", "RSS", "JSON"]
1818

1919
[params]
20+
hideAuthorDate = true
2021
# disable the copy to clipboard links
2122
disableInlineCopyToClipBoard = true
23+
themeVariant = "learn"
2224

2325
[markup]
26+
defaultMarkdownHandler = 'goldmark'
2427
[markup.tableOfContents]
2528
endLevel = 5
2629
ordered = false
2730
startLevel = 3
31+
[markup.goldmark]
32+
[markup.goldmark.renderer]
33+
unsafe = true

documentation/site/content/_index.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
### WebLogic Kubernetes Operator
21

32
The WebLogic Kubernetes Operator (the “operator”) supports running your WebLogic Server and Fusion Middleware Infrastructure domains on Kubernetes, an industry standard, cloud neutral deployment platform. It lets you encapsulate your entire WebLogic Server installation and layered applications into a portable set of cloud neutral images and simple resource description files. You can run them on any on-premises or public cloud that supports Kubernetes where you've deployed the operator.
43

@@ -10,9 +9,9 @@ You can:
109
* Deploy an operator that manages all WebLogic domains in all namespaces in a Kubernetes cluster, or that only manages domains in a specific subset of the namespaces, or that manages only domains that are located in the same namespace as the operator. At most, a namespace can be managed by one operator.
1110
* Supply WebLogic domain configuration using:
1211
* _Model in Image_: Includes [WebLogic Deploy Tooling](https://github.com/oracle/weblogic-deploy-tooling) models and archives in a container image.
13-
* **NOTE**: Model in Image without auxiliary images (the WDT model and installation files are included in the same image with the WebLogic Server installation) is deprecated in WebLogic Kubernetes Operator version 4.0.7. Oracle recommends that you use Model in Image _with_ [auxiliary images]({{< relref "/managing-domains/model-in-image/auxiliary-images.md" >}}).
12+
* **NOTE**: Model in Image without auxiliary images (the WDT model and installation files are included in the same image with the WebLogic Server installation) is deprecated in WebLogic Kubernetes Operator version 4.0.7. Oracle recommends that you use Model in Image _with_ [auxiliary images]({{% relref "/managing-domains/model-in-image/auxiliary-images.md" %}}).
1413
* _Domain in Image_: Includes a WebLogic domain home in a container image.
15-
* **NOTE**: The Domain in Image [domain home source type]({{< relref "/managing-domains/choosing-a-model/_index.md" >}}) is deprecated in WebLogic Kubernetes Operator version 4.0. Oracle recommends that you choose either Domain on PV or Model in Image, depending on your needs.
14+
* **NOTE**: The Domain in Image [domain home source type]({{% relref "/managing-domains/choosing-a-model/_index.md" %}}) is deprecated in WebLogic Kubernetes Operator version 4.0. Oracle recommends that you choose either Domain on PV or Model in Image, depending on your needs.
1615
* _Domain on PV_: Locates WebLogic domain homes in a Kubernetes PersistentVolume (PV). This PV can reside in an NFS file system or other Kubernetes volume types.
1716
* Configure deployment of WebLogic domains as Kubernetes resources (using Kubernetes custom resource definitions).
1817
* Override certain aspects of the WebLogic domain configuration; for example, use a different database password for different deployments.
@@ -24,7 +23,7 @@ You can:
2423
* Publish operator and WebLogic Server logs into Elasticsearch and interact with them in Kibana.
2524

2625
{{% notice tip %}}
27-
The fastest way to experience the operator is to follow the [Quick Start guide]({{< relref "/quickstart/_index.md" >}}), or you can peruse our [documentation]({{< relref "/introduction/_index.md" >}}), read our [blogs](https://blogs.oracle.com/weblogicserver/how-to-weblogic-server-on-kubernetes), or try out the [samples]({{< relref "/samples/_index.md" >}}).
26+
The fastest way to experience the operator is to follow the [Quick Start guide]({{% relref "/quickstart/_index.md" %}}), or you can peruse our [documentation]({{% relref "/introduction/_index.md" %}}), read our [blogs](https://blogs.oracle.com/weblogicserver/how-to-weblogic-server-on-kubernetes), or try out the [samples]({{% relref "/samples/_index.md" %}}).
2827
Also, you can step through the [Tutorial](https://github.com/oracle/weblogic-kubernetes-operator/blob/{{< latestMinorVersion >}}/kubernetes/hands-on-lab/README.md)
2928
using the operator to deploy and run a WebLogic domain container-packaged web application on an Oracle Container Engine for Kubernetes (OKE) cluster.
3029
{{% /notice %}}
@@ -33,13 +32,13 @@ using the operator to deploy and run a WebLogic domain container-packaged web ap
3332
#### Current production release
3433

3534
This is the [current release of the operator](https://github.com/oracle/weblogic-kubernetes-operator/releases).
36-
See the [operator prerequisites]({{< relref "/introduction/prerequisites/introduction.md" >}}) and [supported environments]({{< relref "/introduction/platforms/environments.md" >}}).
35+
See the [operator prerequisites]({{% relref "/introduction/prerequisites/introduction.md" %}}) and [supported environments]({{% relref "/introduction/platforms/environments.md" %}}).
3736

3837
***
3938

4039
#### Recent changes and known issues
4140

42-
See the [Release Notes](https://github.com/oracle/weblogic-kubernetes-operator/releases) for recent changes to the operator and [Known Limitations]({{< relref "/known-limitations/_index.md" >}}) for the current set of known issues.
41+
See the [Release Notes](https://github.com/oracle/weblogic-kubernetes-operator/releases) for recent changes to the operator and [Known Limitations]({{% relref "/known-limitations/_index.md" %}}) for the current set of known issues.
4342

4443
#### Operator earlier versions
4544

@@ -59,7 +58,7 @@ maintained for one release after a replacement is available.
5958

6059
#### Getting help
6160

62-
See [Get help]({{< relref "/introduction/get-help.md" >}}).
61+
See [Get help]({{% relref "/introduction/get-help.md" %}}).
6362

6463
#### Related projects
6564

documentation/site/content/base-images/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ description: "Obtain, create, and dynamically patch images for WebLogic Server o
77
---
88
The following sections guide you through obtaining, creating, and dynamically updating WebLogic images.
99

10-
{{% children style="h4" description="true" %}}
10+
{{% children type="list" description="true" %}}

documentation/site/content/base-images/access-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ and set up image pull secrets for a domain resource:
5757
you must use the web interface to accept the Oracle Standard Terms and Restrictions
5858
for the Oracle software images that you intend to deploy.
5959
You need to do this only once for a particular image.
60-
See [Obtain images from the Oracle Container Registry]({{< relref "/base-images/ocr-images#obtain-images-from-the-oracle-container-registry" >}}).
60+
See [Obtain images from the Oracle Container Registry]({{% relref "/base-images/ocr-images#obtain-images-from-the-oracle-container-registry" %}}).
6161

6262
For more information about creating Kubernetes Secrets for accessing
6363
the registry, see the Kubernetes documentation,

0 commit comments

Comments
 (0)