Skip to content

Commit df8ec4f

Browse files
committed
Update to the latest 4.0.x release
1 parent 071c825 commit df8ec4f

5 files changed

+14
-14
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ystia Orchestrator guides
22

3-
This repository provides guidance on how to install, use and troubleshoot the Ystia Orchestrator (Yorc) latest release 4.0.3.
3+
This repository provides guidance on how to install, use and troubleshoot the Ystia Orchestrator (Yorc) latest release 4.0.6.
44

55
## Overview
66

docs/install/bootstrap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ on which Yorc should be setup. Supported environment are for now:
2020
Then Yorc will automatically download all required components, and run a deployment on the target infrastructure.
2121
This could be used to quickly deploy a development environment or a fully HA and secured setup.
2222

23-
For more information on this feature please read the [bootstrap documentation](https://yorc.readthedocs.io/en/v4.0.3/bootstrap.html).
23+
For more information on this feature please read the [bootstrap documentation](https://yorc.readthedocs.io/en/v4.0.6/bootstrap.html).

docs/install/configure_a4c_yorc_locations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Yorc supports the following locations :
1414

1515
The following sections will describe in details how to configure a Google Compute
1616
Engine location from Alien4Cloud UI, and a Hosts Pool.
17-
For the other locations, see Yorc Alien4Cloud plugin documentation section [Configure a Yorc Orchestrator and a Location](https://yorc-a4c-plugin.readthedocs.io/en/v4.0.3/location.html).
17+
For the other locations, see Yorc Alien4Cloud plugin documentation section [Configure a Yorc Orchestrator and a Location](https://yorc-a4c-plugin.readthedocs.io/en/v4.0.6/location.html).
1818

1919
[Configuring a Google Compute Engine location](configure_a4c_google_location.md)
2020

docs/install/install_yorc_docker.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ It can be done through different ways, that you can combine:
3434
Command line flags take precedence over environment variables, which take precedence
3535
over values defined in the configuration file.
3636

37-
See [Yorc Server configuration](https://yorc.readthedocs.io/en/v4.0.3/configuration.html)
37+
See [Yorc Server configuration](https://yorc.readthedocs.io/en/v4.0.6/configuration.html)
3838
documentation for details on how to configure the Yorc server using these three different methods.
3939

4040
This section will show the use of a configuration file.
@@ -58,12 +58,12 @@ ansible:
5858
locations_file_path: /etc/yorc/locations.yaml
5959
```
6060
61-
All properties defined above are described in the [Yorc Server configuration](https://yorc.readthedocs.io/en/v4.0.3/configuration.html) documentation.
61+
All properties defined above are described in the [Yorc Server configuration](https://yorc.readthedocs.io/en/v4.0.6/configuration.html) documentation.
6262
6363
As you can see the supported locations are configured in a separate file. This file is read once during the initial
6464
cluster startup then it is ignored. This allows to have the same configuration for locations on all Yorc instances of
6565
the cluster.
66-
Locations can then be created/read/updated/deleted at runtime using the [REST API](https://github.com/ystia/yorc/blob/v4.0.3/rest/http_api.md#locations) or the [CLI](https://yorc.readthedocs.io/en/v4.0.3/cli.html#cli-commands-related-to-locations).
66+
Locations can then be created/read/updated/deleted at runtime using the [REST API](https://github.com/ystia/yorc/blob/v4.0.6/rest/http_api.md#locations) or the [CLI](https://yorc.readthedocs.io/en/v4.0.6/cli.html#cli-commands-related-to-locations).
6767
6868
Locations are identified by their names that should be unique and several locations of the same type are supported.
6969
@@ -115,7 +115,7 @@ locations:
115115
116116
Note that locations properties above are provided in plain text, but it is possible
117117
to keep them secret by storing them in a vault.
118-
See Yorc documentation on Hashicorp vault [integration](https://yorc.readthedocs.io/en/v4.0.3/vault.html) and [configuration](https://yorc.readthedocs.io/en/v4.0.3/configuration.html#option-hashivault).
118+
See Yorc documentation on Hashicorp vault [integration](https://yorc.readthedocs.io/en/v4.0.6/vault.html) and [configuration](https://yorc.readthedocs.io/en/v4.0.6/configuration.html#option-hashivault).
119119
120120
One type of infrastructure is not defined here, this is the Hosts Pool infrastructure.
121121
@@ -185,14 +185,14 @@ container can be started. This container expects to read its configuration from
185185
file under `/etc/yorc` within the container (or from environment variables or CLI flags as explained above).
186186

187187
So we will mount the host directory `$HOME/yorc` as `/etc/yorc` on the container.
188-
And use the image of Yorc 4.0.3 stored on docker hub at <https://hub.docker.com/r/ystia/yorc/>.
188+
And use the image of Yorc 4.0.6 stored on docker hub at <https://hub.docker.com/r/ystia/yorc/>.
189189
The port 8800 used by Yorc by default needs also to be exported.
190190
It gives this command to start Yorc:
191191

192192
```bash
193193
docker run -d \
194194
--mount "type=bind,src=/home/cloud-user/yorc,dst=/etc/yorc" \
195-
-p 8800:8800 --rm --name yorc --hostname yorc ystia/yorc:4.0.3
195+
-p 8800:8800 --rm --name yorc --hostname yorc ystia/yorc:4.0.6
196196
```
197197

198198
You can then see and follow Yorc server logs running this command:
@@ -232,7 +232,7 @@ Flags:
232232
Use "yorc [command] --help" for more information about a command.
233233
```
234234

235-
See more details in the documentation on [Running Yorc in a docker container](https://yorc.readthedocs.io/en/v4.0.3/docker.html)
235+
See more details in the documentation on [Running Yorc in a docker container](https://yorc.readthedocs.io/en/v4.0.6/docker.html)
236236

237237
Yorc is now installed.
238238

docs/install/install_yorc_manually.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ To install Yorc manually, you will have to install Yorc dependencies:
66
* Hashicorp Terraform 0.11.8
77
* Hashicorp Consul 1.2.3
88

9-
See a detailed description of these installations at <https://yorc.readthedocs.io/en/v4.0.3/install.html>.
9+
See a detailed description of these installations at <https://yorc.readthedocs.io/en/v4.0.6/install.html>.
1010

1111
You will have then to configure the Yorc server, through environment variables,
1212
command-line flags, or a configuration file just like what was described in
1313
section [Install Yorc the easy way (docker)](install_yorc_docker.md).
1414

15-
Each configuration parameter is described at <https://yorc.readthedocs.io/en/v4.0.3/configuration.html>
15+
Each configuration parameter is described at <https://yorc.readthedocs.io/en/v4.0.6/configuration.html>
1616

17-
You could then just start a Consul agent then Yorc as described at <https://yorc.readthedocs.io/en/v4.0.3/run.html>
17+
You could then just start a Consul agent then Yorc as described at <https://yorc.readthedocs.io/en/v4.0.6/run.html>
1818

19-
Or if you plan to install Yorc in High Availability mode, follow this guide : <https://yorc.readthedocs.io/en/v4.0.3/ha.html>.
19+
Or if you plan to install Yorc in High Availability mode, follow this guide : <https://yorc.readthedocs.io/en/v4.0.6/ha.html>.
2020

2121
Once Yorc is installed, you can go to the next section on how to [install the UI companion of Yorc, Alien4Cloud](install_a4c.md).

0 commit comments

Comments
 (0)