You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printf"\nCreate a Solr Backup to take local backups of the test collection\n"
176
+
cat <<EOF | kubectl apply -f -
177
+
apiVersion: solr.apache.org/v1beta1
178
+
kind: SolrBackup
179
+
metadata:
180
+
name: ex-back
181
+
spec:
182
+
solrCloud: example
183
+
collections:
184
+
- smoke-test
185
+
location: test-dir/
186
+
repositoryName: local
187
+
recurrence:
188
+
schedule: "@every 10s"
189
+
maxSaved: 3
190
+
EOF
191
+
159
192
printf"\nCreate a Solr Prometheus Exporter to expose metrics for the Solr Cloud\n"
160
193
cat <<EOF | kubectl apply -f -
161
194
apiVersion: solr.apache.org/v1beta1
@@ -182,9 +215,48 @@ sleep 15
182
215
printf"\nQuery the prometheus exporter, test for 'http://example-solrcloud-*.example-solrcloud-headless.default:8983/solr' (internal) URL being scraped.\n"
echo"The another backup has been taken since recurrence was stopped. Last backupId should be '${LAST_BACKUP_ID}', but instead found '${FOUND_BACKUP_ID}'.">&2
Copy file name to clipboardExpand all lines: helm/solr/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ Descriptions on how to use these options can be found in the [SolrCloud document
108
108
| updateStrategy.restartSchedule |[string (CRON)](https://pkg.go.dev/github.com/robfig/cron/v3?utm_source=godoc#hdr-CRON_Expression_Format)|| A CRON schedule for automatically restarting the Solr Cloud. [Refer here](https://pkg.go.dev/github.com/robfig/cron/v3?utm_source=godoc#hdr-CRON_Expression_Format) for all possible CRON syntaxes accepted. |
109
109
| serviceAccount.create | boolean |`false`| Create a serviceAccount to be used for all pods being deployed (Solr & ZK). If `serviceAccount.name` is not specified, the full name of the deployment will be used. |
110
110
| serviceAccount.name | string || The optional default service account used for Solr and ZK unless overridden below. If `serviceAccount.create` is set to `false`, this serviceAccount must exist in the target namespace. |
111
-
| backupRepositories |[]object || A list of BackupRepositories to connect your SolrCloud to. Visit https://apache.github.io/solr-operator/docs/solr-backup or run `kubectl explain solrcloud.spec.backupRepositories` to see the available options. |
111
+
| backupRepositories |[]object || A list of BackupRepositories to connect your SolrCloud to. Visit the [SolrBackup docs](https://apache.github.io/solr-operator/docs/solr-backup) or run `kubectl explain solrcloud.spec.backupRepositories` to see the available options. |
0 commit comments