@@ -386,16 +386,16 @@ type CloudNativeBuildPackSpec struct {
386
386
// ----- CoherenceSpec struct -----------------------------------------------
387
387
388
388
// 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
390
390
// +k8s:openapi-gen=true
391
391
type CoherenceSpec struct {
392
392
// 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
394
394
// +optional
395
395
CacheConfig * string `json:"cacheConfig,omitempty"`
396
396
// OverrideConfig is name of the Coherence operational configuration override file,
397
397
// 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
399
399
// +optional
400
400
OverrideConfig * string `json:"overrideConfig,omitempty"`
401
401
// A boolean flag indicating whether members of this deployment are storage enabled.
@@ -404,26 +404,26 @@ type CoherenceSpec struct {
404
404
// This flag is also used to configure the ScalingPolicy value if a value is not specified. If the
405
405
// StorageEnabled field is not specified or is true the scaling will be safe, if StorageEnabled is
406
406
// 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
408
408
// +optional
409
409
StorageEnabled * bool `json:"storageEnabled,omitempty"`
410
410
// Persistence values configure the on-disc data persistence settings.
411
411
// 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
413
413
// +optional
414
414
Persistence * PersistenceSpec `json:"persistence,omitempty"`
415
415
// 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
417
417
// +optional
418
418
LogLevel * int32 `json:"logLevel,omitempty"`
419
419
// Management configures Coherence management over REST
420
420
// 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
422
422
// +optional
423
423
Management * PortSpecWithSSL `json:"management,omitempty"`
424
424
// Metrics configures Coherence metrics publishing
425
425
// 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
427
427
// +optional
428
428
Metrics * PortSpecWithSSL `json:"metrics,omitempty"`
429
429
// Tracing is used to configure Coherence distributed tracing functionality.
@@ -442,13 +442,13 @@ type CoherenceSpec struct {
442
442
// +optional
443
443
AllowEndangeredForStatusHA []string `json:"allowEndangeredForStatusHA,omitempty"`
444
444
// 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
446
446
// +optional
447
447
ExcludeFromWKA * bool `json:"excludeFromWKA,omitempty"`
448
448
// Specify an existing Coherence deployment to be used for WKA.
449
449
// If an existing deployment is to be used for WKA the ExcludeFromWKA is
450
450
// 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
452
452
// +optional
453
453
WKA * CoherenceWKASpec `json:"wka,omitempty"`
454
454
// 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 {
2558
2558
2559
2559
// ConfigMapVolumeSpec represents a ConfigMap that will be added to the deployment's Pods as an
2560
2560
// 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
2562
2562
// +k8s:openapi-gen=true
2563
2563
type ConfigMapVolumeSpec struct {
2564
2564
// The name of the ConfigMap to mount.
@@ -2680,7 +2680,7 @@ func (in *ConfigMapVolumeSpec) AddVolumeMounts(c *corev1.Container) {
2680
2680
2681
2681
// SecretVolumeSpec represents a Secret that will be added to the deployment's Pods as an
2682
2682
// 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
2684
2684
// +k8s:openapi-gen=true
2685
2685
type SecretVolumeSpec struct {
2686
2686
// The name of the Secret to mount.
0 commit comments