Skip to content

Commit 16232c3

Browse files
authored
Documentation broken link fixes (#747)
1 parent 0a326a8 commit 16232c3

File tree

26 files changed

+10274
-266
lines changed

26 files changed

+10274
-266
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 183 deletions
This file was deleted.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2183,14 +2183,14 @@ kind-single-worker: ## Run a KinD cluster with a single worker node
21832183
# ----------------------------------------------------------------------------------------------------------------------
21842184
# Start a Kind cluster with Calico
21852185
# ----------------------------------------------------------------------------------------------------------------------
2186-
CALICO_VERSION ?= v3.25.0
2186+
CALICO_VERSION ?= v3.30.0
21872187

21882188
.PHONY: kind-calico
21892189
kind-calico: export KIND_CONFIG=$(KIND_SCRIPTS)/kind-config-calico.yaml
21902190
kind-calico: ## Run a KinD cluster with Calico
21912191
kind create cluster --name $(KIND_CLUSTER) --config $(KIND_SCRIPTS)/kind-config-calico.yaml --image $(KIND_IMAGE)
21922192
$(KIND_SCRIPTS)/kind-label-node.sh
2193-
$(KUBECTL_CMD) apply -f https://raw.githubusercontent.com/projectcalico/calico/$(CALICO_VERSION)/manifests/calico.yaml
2193+
$(KUBECTL_CMD) apply -f $(SCRIPTS_DIR)/calico/calico-$(CALICO_VERSION).yaml
21942194
$(KUBECTL_CMD) -n kube-system set env daemonset/calico-node FELIX_IGNORELOOSERPF=true
21952195
sleep 30
21962196
$(KUBECTL_CMD) -n kube-system wait --for condition=ready --timeout=$(CALICO_TIMEOUT) -l k8s-app=calico-node pod

api/v1/coherence_types.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -386,16 +386,16 @@ type CloudNativeBuildPackSpec struct {
386386
// ----- CoherenceSpec struct -----------------------------------------------
387387

388388
// CoherenceSpec is the section of the CRD configures settings specific to Coherence.
389-
// +coh:doc=coherence_settings/010_overview.adoc,Coherence Configuration
389+
// +coh:doc=docs/coherence_settings/010_overview.adoc,Coherence Configuration
390390
// +k8s:openapi-gen=true
391391
type CoherenceSpec struct {
392392
// CacheConfig is the name of the cache configuration file to use
393-
// +coh:doc=coherence_settings/030_cache_config.adoc,Configure Cache Config File
393+
// +coh:doc=docs/coherence_settings/030_cache_config.adoc,Configure Cache Config File
394394
// +optional
395395
CacheConfig *string `json:"cacheConfig,omitempty"`
396396
// OverrideConfig is name of the Coherence operational configuration override file,
397397
// the default is tangosol-coherence-override.xml
398-
// +coh:doc=coherence_settings/040_override_file.adoc,Configure Operational Config File
398+
// +coh:doc=docs/coherence_settings/040_override_file.adoc,Configure Operational Config File
399399
// +optional
400400
OverrideConfig *string `json:"overrideConfig,omitempty"`
401401
// A boolean flag indicating whether members of this deployment are storage enabled.
@@ -404,26 +404,26 @@ type CoherenceSpec struct {
404404
// This flag is also used to configure the ScalingPolicy value if a value is not specified. If the
405405
// StorageEnabled field is not specified or is true the scaling will be safe, if StorageEnabled is
406406
// set to false scaling will be parallel.
407-
// +coh:doc=coherence_settings/050_storage_enabled.adoc,Configure Storage Enabled
407+
// +coh:doc=docs/coherence_settings/050_storage_enabled.adoc,Configure Storage Enabled
408408
// +optional
409409
StorageEnabled *bool `json:"storageEnabled,omitempty"`
410410
// Persistence values configure the on-disc data persistence settings.
411411
// The bool Enabled enables or disabled on disc persistence of data.
412-
// +coh:doc=coherence_settings/080_persistence.adoc,Configure Persistence
412+
// +coh:doc=docs/coherence_settings/080_persistence.adoc,Configure Persistence
413413
// +optional
414414
Persistence *PersistenceSpec `json:"persistence,omitempty"`
415415
// The Coherence log level, default being 5 (info level).
416-
// +coh:doc=coherence_settings/060_log_level.adoc,Configure Coherence log level
416+
// +coh:doc=docs/coherence_settings/060_log_level.adoc,Configure Coherence log level
417417
// +optional
418418
LogLevel *int32 `json:"logLevel,omitempty"`
419419
// Management configures Coherence management over REST
420420
// Note: Coherence management over REST will is available in Coherence version >= 12.2.1.4.
421-
// +coh:doc=management_and_diagnostics/010_overview.adoc,Management & Diagnostics
421+
// +coh:doc=docs/management_and_diagnostics/010_overview.adoc,Management & Diagnostics
422422
// +optional
423423
Management *PortSpecWithSSL `json:"management,omitempty"`
424424
// Metrics configures Coherence metrics publishing
425425
// Note: Coherence metrics publishing will is available in Coherence version >= 12.2.1.4.
426-
// +coh:doc=metrics/010_overview.adoc,Metrics
426+
// +coh:doc=docs/metrics/010_overview.adoc,Metrics
427427
// +optional
428428
Metrics *PortSpecWithSSL `json:"metrics,omitempty"`
429429
// Tracing is used to configure Coherence distributed tracing functionality.
@@ -442,13 +442,13 @@ type CoherenceSpec struct {
442442
// +optional
443443
AllowEndangeredForStatusHA []string `json:"allowEndangeredForStatusHA,omitempty"`
444444
// Exclude members of this deployment from being part of the cluster's WKA list.
445-
// +coh:doc=coherence_settings/070_wka.adoc,Well Known Addressing
445+
// +coh:doc=docs/coherence_settings/070_wka.adoc,Well Known Addressing
446446
// +optional
447447
ExcludeFromWKA *bool `json:"excludeFromWKA,omitempty"`
448448
// Specify an existing Coherence deployment to be used for WKA.
449449
// If an existing deployment is to be used for WKA the ExcludeFromWKA is
450450
// implicitly set to true.
451-
// +coh:doc=coherence_settings/070_wka.adoc,Well Known Addressing
451+
// +coh:doc=docs/coherence_settings/070_wka.adoc,Well Known Addressing
452452
// +optional
453453
WKA *CoherenceWKASpec `json:"wka,omitempty"`
454454
// Certain features rely on a version check prior to starting the server, e.g. metrics requires >= 12.2.1.4.
@@ -2558,7 +2558,7 @@ type StartQuorumStatus struct {
25582558

25592559
// ConfigMapVolumeSpec represents a ConfigMap that will be added to the deployment's Pods as an
25602560
// additional Volume and as a VolumeMount in the containers.
2561-
// +coh:doc=misc_pod_settings/050_configmap_volumes.adoc,Add ConfigMap Volumes
2561+
// +coh:doc=docs/misc_pod_settings/050_configmap_volumes.adoc,Add ConfigMap Volumes
25622562
// +k8s:openapi-gen=true
25632563
type ConfigMapVolumeSpec struct {
25642564
// The name of the ConfigMap to mount.
@@ -2680,7 +2680,7 @@ func (in *ConfigMapVolumeSpec) AddVolumeMounts(c *corev1.Container) {
26802680

26812681
// SecretVolumeSpec represents a Secret that will be added to the deployment's Pods as an
26822682
// additional Volume and as a VolumeMount in the containers.
2683-
// +coh:doc=misc_pod_settings/020_secret_volumes.adoc,Add Secret Volumes
2683+
// +coh:doc=docs/misc_pod_settings/020_secret_volumes.adoc,Add Secret Volumes
26842684
// +k8s:openapi-gen=true
26852685
type SecretVolumeSpec struct {
26862686
// The name of the Secret to mount.

api/v1/coherenceresourcespec_types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,14 @@ type CoherenceResourceSpec struct {
122122
// A list of ConfigMaps to add as volumes.
123123
// Each entry in the list will be added as a ConfigMap Volume to the deployment's
124124
// Pods and as a VolumeMount to all the containers and init-containers in the Pod.
125-
// +coh:doc=misc_pod_settings/050_configmap_volumes.adoc,Add ConfigMap Volumes
125+
// +coh:doc=docs/misc_pod_settings/050_configmap_volumes.adoc,Add ConfigMap Volumes
126126
// +listType=map
127127
// +listMapKey=name
128128
ConfigMapVolumes []ConfigMapVolumeSpec `json:"configMapVolumes,omitempty"`
129129
// A list of Secrets to add as volumes.
130130
// Each entry in the list will be added as a Secret Volume to the deployment's
131131
// Pods and as a VolumeMount to all the containers and init-containers in the Pod.
132-
// +coh:doc=misc_pod_settings/020_secret_volumes.adoc,Add Secret Volumes
132+
// +coh:doc=docs/misc_pod_settings/020_secret_volumes.adoc,Add Secret Volumes
133133
// +listType=map
134134
// +listMapKey=name
135135
SecretVolumes []SecretVolumeSpec `json:"secretVolumes,omitempty"`

docs/about/01_overview.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Quick start guide to running your first Coherence cluster using the Coherence Op
2323
2424
[CARD]
2525
.Install
26-
[icon=fa-save,link=docs/installation/01_installation.adoc]
26+
[icon=fa-save,link=docs/installation/001_installation.adoc]
2727
--
2828
Installing and running the Coherence Operator.
2929
--

docs/about/03_quickstart.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ to install a simple Coherence cluster.
1515
1616
== Prerequisites
1717
18-
Ensure that the <<docs/installation/01_installation.adoc,Coherence Operator prerequisites>> are available.
18+
Ensure that the <<docs/installation/001_installation.adoc,Coherence Operator prerequisites>> are available.
1919
2020
== 1. Install the Coherence Operator
2121
@@ -71,7 +71,7 @@ or with Helm v2
7171
helm install --namespace coherence-test --name operator coherence/coherence-operator
7272
----
7373
74-
See the <<docs/installation/01_installation.adoc, full install guide>> for more details.
74+
See the <<docs/installation/001_installation.adoc, full install guide>> for more details.
7575
7676
7777
== 2. Install a Coherence Deployment

0 commit comments

Comments
 (0)