Skip to content

Commit bd69be3

Browse files
replace hard-coded versions
1 parent a01c840 commit bd69be3

30 files changed

+65
-65
lines changed

docs/reference/search-connectors/api-tutorial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ If you’re just getting started with connectors, you might want to start in the
3535
If you already have an {{es}} deployment on Elastic Cloud (*Hosted deployment* or *Serverless project*), you’re good to go. To spin up {{es}} in local dev mode in Docker for testing purposes, open the collapsible section below.
3636

3737
:::::{dropdown} Run local {{es}} in Docker
38-
```sh
38+
```sh subs=true
3939
docker run -p 9200:9200 -d --name elasticsearch \
4040
-e "discovery.type=single-node" \
4141
-e "xpack.security.enabled=false" \
4242
-e "xpack.security.http.ssl.enabled=false" \
4343
-e "xpack.license.self_generated.type=trial" \
44-
docker.elastic.co/elasticsearch/elasticsearch:9.0.0
44+
docker.elastic.co/elasticsearch/elasticsearch:{{version.stack}}
4545
```
4646

4747
::::{warning}
@@ -246,13 +246,13 @@ Now that we have the configuration file set up, we can run the connector service
246246

247247
Run the following Docker command to start the connector service:
248248

249-
```sh
249+
```sh subs=true
250250
docker run \
251251
-v "$HOME/connectors-config:/config" \
252252
--rm \
253253
--tty -i \
254254
--network host \
255-
docker.elastic.co/integrations/elastic-connectors:9.0.0 \
255+
docker.elastic.co/integrations/elastic-connectors:{{version.stack}} \
256256
/app/bin/elastic-ingest \
257257
-c /config/config.yml
258258
```

docs/reference/search-connectors/es-connectors-azure-blob.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,13 @@ Note: You can change other default configurations by simply uncommenting specifi
183183
::::{dropdown} Step 3: Run the Docker image
184184
Run the Docker image with the Connector Service using the following command:
185185

186-
```sh
186+
```sh subs=true
187187
docker run \
188188
-v ~/connectors-config:/config \
189189
--network "elastic" \
190190
--tty \
191191
--rm \
192-
docker.elastic.co/integrations/elastic-connectors:9.0.0 \
192+
docker.elastic.co/integrations/elastic-connectors:{{version.stack}} \
193193
/app/bin/elastic-ingest \
194194
-c /config/config.yml
195195
```

docs/reference/search-connectors/es-connectors-box.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,13 @@ Note: You can change other default configurations by simply uncommenting specifi
231231
::::{dropdown} Step 3: Run the Docker image
232232
Run the Docker image with the Connector Service using the following command:
233233

234-
```sh
234+
```sh subs=true
235235
docker run \
236236
-v ~/connectors-config:/config \
237237
--network "elastic" \
238238
--tty \
239239
--rm \
240-
docker.elastic.co/integrations/elastic-connectors:9.0.0 \
240+
docker.elastic.co/integrations/elastic-connectors:{{version.stack}} \
241241
/app/bin/elastic-ingest \
242242
-c /config/config.yml
243243
```

docs/reference/search-connectors/es-connectors-confluence.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,13 +241,13 @@ Note: You can change other default configurations by simply uncommenting specifi
241241
::::{dropdown} Step 3: Run the Docker image
242242
Run the Docker image with the Connector Service using the following command:
243243

244-
```sh
244+
```sh subs=true
245245
docker run \
246246
-v ~/connectors-config:/config \
247247
--network "elastic" \
248248
--tty \
249249
--rm \
250-
docker.elastic.co/integrations/elastic-connectors:9.0.0 \
250+
docker.elastic.co/integrations/elastic-connectors:{{version.stack}} \
251251
/app/bin/elastic-ingest \
252252
-c /config/config.yml
253253
```

docs/reference/search-connectors/es-connectors-dropbox.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,13 +251,13 @@ Note: You can change other default configurations by simply uncommenting specifi
251251
::::{dropdown} Step 3: Run the Docker image
252252
Run the Docker image with the Connector Service using the following command:
253253

254-
```sh
254+
```sh subs=true
255255
docker run \
256256
-v ~/connectors-config:/config \
257257
--network "elastic" \
258258
--tty \
259259
--rm \
260-
docker.elastic.co/integrations/elastic-connectors:9.0.0 \
260+
docker.elastic.co/integrations/elastic-connectors:{{version.stack}} \
261261
/app/bin/elastic-ingest \
262262
-c /config/config.yml
263263
```

docs/reference/search-connectors/es-connectors-github.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,13 +276,13 @@ Note: You can change other default configurations by simply uncommenting specifi
276276
::::{dropdown} Step 3: Run the Docker image
277277
Run the Docker image with the Connector Service using the following command:
278278

279-
```sh
279+
```sh subs=true
280280
docker run \
281281
-v ~/connectors-config:/config \
282282
--network "elastic" \
283283
--tty \
284284
--rm \
285-
docker.elastic.co/integrations/elastic-connectors:9.0.0 \
285+
docker.elastic.co/integrations/elastic-connectors:{{version.stack}} \
286286
/app/bin/elastic-ingest \
287287
-c /config/config.yml
288288
```

docs/reference/search-connectors/es-connectors-gmail.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,13 +211,13 @@ Note: You can change other default configurations by simply uncommenting specifi
211211
::::{dropdown} Step 3: Run the Docker image
212212
Run the Docker image with the Connector Service using the following command:
213213

214-
```sh
214+
```sh subs=true
215215
docker run \
216216
-v ~/connectors-config:/config \
217217
--network "elastic" \
218218
--tty \
219219
--rm \
220-
docker.elastic.co/integrations/elastic-connectors:9.0.0 \
220+
docker.elastic.co/integrations/elastic-connectors:{{version.stack}} \
221221
/app/bin/elastic-ingest \
222222
-c /config/config.yml
223223
```

docs/reference/search-connectors/es-connectors-google-cloud.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ Note: You can change other default configurations by simply uncommenting specifi
9797
::::{dropdown} Step 3: Run the Docker image
9898
Run the Docker image with the Connector Service using the following command:
9999

100-
```sh
100+
```sh subs=true
101101
docker run \
102102
-v ~/connectors-config:/config \
103103
--network "elastic" \
104104
--tty \
105105
--rm \
106-
docker.elastic.co/integrations/elastic-connectors:9.0.0 \
106+
docker.elastic.co/integrations/elastic-connectors:{{version.stack}} \
107107
/app/bin/elastic-ingest \
108108
-c /config/config.yml
109109
```

docs/reference/search-connectors/es-connectors-google-drive.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ Note: You can change other default configurations by simply uncommenting specifi
164164
::::{dropdown} Step 3: Run the Docker image
165165
Run the Docker image with the Connector Service using the following command:
166166

167-
```sh
167+
```sh subs=true
168168
docker run \
169169
-v ~/connectors-config:/config \
170170
--network "elastic" \
171171
--tty \
172172
--rm \
173-
docker.elastic.co/integrations/elastic-connectors:9.0.0 \
173+
docker.elastic.co/integrations/elastic-connectors:{{version.stack}} \
174174
/app/bin/elastic-ingest \
175175
-c /config/config.yml
176176
```

docs/reference/search-connectors/es-connectors-graphql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ Note: You can change other default configurations by simply uncommenting specifi
8282
::::{dropdown} Step 3: Run the Docker image
8383
Run the Docker image with the Connector Service using the following command:
8484

85-
```sh
85+
```sh subs=true
8686
docker run \
8787
-v ~/connectors-config:/config \
8888
--network "elastic" \
8989
--tty \
9090
--rm \
91-
docker.elastic.co/integrations/elastic-connectors:9.0.0 \
91+
docker.elastic.co/integrations/elastic-connectors:{{version.stack}} \
9292
/app/bin/elastic-ingest \
9393
-c /config/config.yml
9494
```

0 commit comments

Comments
 (0)