Skip to content

Commit 01e59a2

Browse files
committed
fixed order of patterns
1 parent 3421e66 commit 01e59a2

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

README.adoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ link:foundational/HealthProbe/README.adoc[Health Probe]::
2929
Liveness and Readiness probes for the random generator.
3030
link:foundational/ManagedLifecycle/README.adoc[Managed Lifecycle]::
3131
`postStart` and `preStop` hooks demonstrated with the random generator application.
32-
link:behavorial/ServiceDiscovery/README.adoc[Service Discovery]::
33-
Various ways how to access our random-generator REST service [*]
3432
link:foundational/AutomatedPlacement/README.adoc[Automated Placement]::
3533
Example with node selector, pod and node affinity, taint and tolerations demonstrated.
3634

@@ -44,6 +42,10 @@ link:behavorial/DaemonService/README.adoc[Daemon Service]::
4442
Sample maintenance script for maintenance jobs on every node of a cluster
4543
link:behavorial/SingletonService/README.adoc[Singleton Service]::
4644
Example of a PodDisruptionBudget for controlling voluntary disruptions [*]
45+
link:behavorial/StatefulService/README.adoc[Stateful Service]::
46+
StatefulSet example for our random-generator [*]
47+
link:behavorial/ServiceDiscovery/README.adoc[Service Discovery]::
48+
Various ways how to access our random-generator REST service [*]
4749
link:behavorial/SelfAwareness/README.adoc[Self Awareness]::
4850
Using the Downward API for setting environment variables and mount resource fields as files with the random-generator service.
4951

@@ -53,34 +55,32 @@ link:structural/InitContainer/README.adoc[Init Container]::
5355
Initialize a HTTP server's HTML source from a remote git repository [*]
5456
link:structural/Sidecar/README.adoc[Sidecar]::
5557
Git polling example for a sidecar
56-
link:structural/Ambassador/README.adoc[Ambassador]::
57-
Ambassador for moving on the log of the random-generator [*]
5858
link:structural/Adapter/README.adoc[Adapter]::
5959
Adapter for exporting timing information from the sample random-generator application in a Prometheus format [*]
60+
link:structural/Ambassador/README.adoc[Ambassador]::
61+
Ambassador for moving on the log of the random-generator [*]
6062

6163
=== Configuration Patterns
6264

6365
link:configuration/EnvVarConfiguration/README.adoc[EnvVar Configuration]::
6466
A simple example of how to use environment variables literally and from ConfigMaps and Secrets for our random-generator service. [*]
6567
link:configuration/ConfigurationResource/README.adoc[Configuration Resource]::
6668
Example how to configure the random-generator Spring Boot application with a ConfigMap [*]
67-
link:configuration/ConfigurationTemplate/README.adoc[Configuration Template]::
68-
Example how to use a template configuration `standalone.xml` which is processed with a template processed and filled with data from ConfigMap before a Wildfly server is started.
6969
link:configuration/ImmutableConfiguration/README.adoc[Immutable Configuration]::
7070
Several examples of how to use immutable configuration containers for application configuration. This includes examples for the plain Docker case and for Kubernetes.
71+
link:configuration/ConfigurationTemplate/README.adoc[Configuration Template]::
72+
Example how to use a template configuration `standalone.xml` which is processed with a template processed and filled with data from ConfigMap before a Wildfly server is started.
7173

7274
=== Advanced Patterns
7375

74-
link:advanced/StatefulService/README.adoc[Stateful Service]::
75-
StatefulSet example for our random-generator [*]
7676
link:advanced/Controller/README.adoc[Controller]::
7777
Simple, pure shell based controller which watches ConfigMap resources for changes and restarts `Pods` by using a label selector provided as annotation. An additional link:advanced/Controller/expose-controller/README.adoc[example controller] exposes an Ingress route when it detects an `exposeService` label attached to the service.
7878
link:advanced/Operator/README.adoc[Operator]::
7979
Operator based on the ConfigMap watch link:advanced/Controller/README.adoc[controller] and introduces a CRD ConfigWatcher which connects a ConfigMap with a set of Pods to restart in case of a config change.
80-
link:advanced/ImageBuilder/README.adoc[Image Builder]::
81-
Setup a link:advanced/ImageBuilder/openshift/README.adoc[chained build] on OpenShift and use link:advanced/ImageBuilder/knative/README.adoc[Knative build] for doing builds within the cluster.
8280
link:advanced/ElasticScale/README.adoc[Elastic Scale]::
8381
Horizontal and vertical scaling examples with the random-generator Service [*]
82+
link:advanced/ImageBuilder/README.adoc[Image Builder]::
83+
Setup a link:advanced/ImageBuilder/openshift/README.adoc[chained build] on OpenShift and use link:advanced/ImageBuilder/knative/README.adoc[Knative build] for doing builds within the cluster.
8484

8585

8686
This work is licensed under a https://creativecommons.org/licenses/by/4.0/[Creative Commons Attribution 4.0 International License]
File renamed without changes.

advanced/StatefulService/index.yml renamed to behavorial/StatefulService/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pattern: Stateful Service
2-
category: advanced
3-
base: advanced/StatefulService
2+
category: behavorial
3+
base: behavorial/StatefulService
44
examples:
55
- description:
66
path: statefulset.yml
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)