Skip to content

Commit

Permalink
Merge branch 'main' into vendor/3348-guides
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwcarlson authored Aug 23, 2023
2 parents 3310572 + 93f6b1c commit f3f81ac
Show file tree
Hide file tree
Showing 15 changed files with 357 additions and 72 deletions.
21 changes: 20 additions & 1 deletion sites/platform/src/add-services/elasticsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,26 @@ To do so, follow the same procedure as for [upgrading](#upgrading).

{{% service-values-change %}}

{{< relationship "elasticsearch" >}}
```yaml
{
"username": null,
"scheme": "http",
"service": "elasticsearch77",
"fragment": null,
"ip": "169.254.169.232",
"hostname": "jmgjydr275pkj5v7prdj2asgxm.elasticsearch77.service._.eu-3.platformsh.site",
"port": 9200,
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "elasticsearch.internal",
"rel": "elasticsearch",
"path": null,
"query": [],
"password": "ChangeMe",
"type": "elasticsearch:7.7",
"public": false,
"host_mapped": false
}
```

For [premium versions](#supported-versions),
the service type is `elasticsearch-enterprise`.
Expand Down
14 changes: 13 additions & 1 deletion sites/platform/src/add-services/headless-chrome.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,19 @@ Puppeteer can be used to generate PDFs and screenshots of web pages, automate fo

{{% service-values-change %}}

{{< relationship "headlesschrome" >}}
```yaml
{
"service": "headlesschrome",
"ip": "169.254.91.5",
"hostname": "gvbo7vktgmou2mplnzt4b54hgi.headlesschrome.service._.eu-3.platformsh.site",
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "headlesschrome.internal",
"rel": "http",
"scheme": "http",
"type": "chrome-headless:73",
"port": 9222
}
```

## Requirements

Expand Down
4 changes: 2 additions & 2 deletions sites/platform/src/add-services/influxdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ See more information on [how to upgrade to version 2.3 or later](#upgrade-to-ver
"rel": "influxdb",
"scheme": "http",
"username": "admin",
"password": "84c601e8b92060c6126a6d3163227ce19e32934a45e19b7cbc0571c2fe9fd347",
"password": "ChangeMe",
"port": 8086,
"path": null,
"query": {
Expand Down Expand Up @@ -139,7 +139,7 @@ If you're relying on any other attributes connecting to InfluxDB, they remain ac
"rel": "influxdb",
"scheme": "http",
"username": "admin",
"password": "84c601e8b92060c6126a6d3163227ce19e32934a45e19b7cbc0571c2fe9fd347",
"password": "ChangeMe",
"port": 8086,
"path": null,
"query": {
Expand Down
14 changes: 13 additions & 1 deletion sites/platform/src/add-services/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,19 @@ It is a framework for storing, reading and analyzing streaming data. See the [Ka

{{% service-values-change %}}

{{< relationship "kafka" >}}
```yaml
{
"service": "kafka25",
"ip": "169.254.27.10",
"hostname": "t7lv3t3ttyh3vyrzgqguj5upwy.kafka25.service._.eu-3.platformsh.site",
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "kafka.internal",
"rel": "kafka",
"scheme": "kafka",
"type": "kafka:2.5",
"port": 9092
}
```

## Usage example

Expand Down
14 changes: 13 additions & 1 deletion sites/platform/src/add-services/memcached.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,19 @@ Both Memcached and Redis can be used for application caching. As a general rule,

{{% service-values-change %}}

{{< relationship "memcached" >}}
```yaml
{
"service": "memcached16",
"ip": "169.254.228.111",
"hostname": "3sdm72jgaxge2b6aunxdlzxyea.memcached16.service._.eu-3.platformsh.site",
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "memcached.internal",
"rel": "memcached",
"scheme": "memcached",
"type": "memcached:1.6",
"port": 11211
}
```

## Usage example

Expand Down
20 changes: 19 additions & 1 deletion sites/platform/src/add-services/mongodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,25 @@ If you want to experiment with a later version without committing to it use a no

{{% service-values-change %}}

{{< relationship "mongodb" >}}
```yaml
{
"username": "main",
"scheme": "mongodb",
"service": "mongodb36",
"ip": "169.254.150.147",
"hostname": "blbczy5frqpkt2sfkj2w3zk72q.mongodb36.service._.eu-3.platformsh.site",
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "mongodb.internal",
"rel": "mongodb",
"query": {
"is_master": true
},
"path": "main",
"password": null,
"type": "mongodb:3.6",
"port": 27017
}
```

## Usage example

Expand Down
21 changes: 20 additions & 1 deletion sites/platform/src/add-services/opensearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,26 @@ switch to [a supported version](#supported-versions).

{{% service-values-change %}}

{{< relationship "opensearch" >}}
```yaml
{
"username": null,
"scheme": "http",
"service": "opensearch12",
"fragment": null,
"ip": "169.254.99.100",
"hostname": "2e36wpnescmc5ffcddczsnhnai.opensearch12.service._.eu-3.platformsh.site",
"port": 9200,
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "opensearch.internal",
"rel": "opensearch",
"path": null,
"query": [],
"password": "ChangeMe",
"type": "opensearch:1.2",
"public": false,
"host_mapped": false
}
```

## Usage example

Expand Down
23 changes: 22 additions & 1 deletion sites/platform/src/add-services/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,28 @@ For more details, see how to [upgrade to PostgreSQL 12 with `postgis`](#upgrade-

{{% service-values-change %}}

{{< relationship "postgresql" >}}
```yaml
{
"username": "main",
"scheme": "pgsql",
"service": "postgresql12",
"fragment": null,
"ip": "169.254.38.66",
"hostname": "zydalrxgkhif2czr3xqth3qkue.postgresql12.service._.eu-3.platformsh.site",
"port": 5432,
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "postgresql.internal",
"rel": "postgresql",
"path": "main",
"query": {
"is_master": true
},
"password": "ChangeMe",
"type": "postgresql:12",
"public": false,
"host_mapped": false
}
```

## Usage example

Expand Down
21 changes: 20 additions & 1 deletion sites/platform/src/add-services/rabbitmq.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,23 @@ rabbitmq:
{{% service-values-change %}}
{{< relationship "rabbitmq" >}}
```yaml
{
"username": "guest",
"scheme": "amqp",
"service": "rabbitmq38",
"fragment": null,
"ip": "169.254.57.5",
"hostname": "iwrccysk3gpam2zdlwdr5fgs2y.rabbitmq38.service._.eu-3.platformsh.site",
"port": 5672,
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "rabbitmq.internal",
"rel": "rabbitmq",
"path": null,
"query": [],
"password": "ChangeMe",
"type": "rabbitmq:3.8",
"public": false,
"host_mapped": false
}
```
21 changes: 20 additions & 1 deletion sites/platform/src/add-services/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,26 @@ const value = await client.get('x'); // returns 42

{{% service-values-change %}}

{{< relationship "redis" >}}
```yaml
{
"username": null,
"scheme": "redis",
"service": "redis6",
"fragment": null,
"ip": "169.254.22.75",
"hostname": "7mnenhdiz7ecraovljrba6pmiy.redis6.service._.eu-3.platformsh.site",
"port": 6379,
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "redis.internal",
"rel": "redis",
"path": null,
"query": [],
"password": null,
"type": "redis:6.0",
"public": false,
"host_mapped": false
}
```

The format of the relationship is identical whether your Redis service is [ephemeral](#ephemeral-redis) or [persistent](#persistent-redis).

Expand Down
21 changes: 20 additions & 1 deletion sites/platform/src/add-services/solr.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,26 @@ Solr search with generic schemas provided, and a custom schema is also supported

{{% service-values-change %}}

{{< relationship "solr" >}}
```yaml
{
"username": null,
"scheme": "solr",
"service": "solr86",
"fragment": null,
"ip": "169.254.68.119",
"hostname": "csjsvtdhmjrdre2uaoeim22xjy.solr86.service._.eu-3.platformsh.site",
"port": 8080,
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "solr.internal",
"rel": "solr",
"path": "solr\/maincore",
"query": [],
"password": "ChangeMe",
"type": "solr:8.6",
"public": false,
"host_mapped": false
}
```

## Usage example

Expand Down
23 changes: 22 additions & 1 deletion sites/platform/src/add-services/vault.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,28 @@ In the JSON object that's returned, you can notice that the `ciphertext` is diff

{{% service-values-change %}}

{{< relationship "vault-kms" >}}
```yaml
{
"username": "",
"scheme": "http",
"service": "vault-kms",
"fragment": "",
"ip": "169.254.196.95",
"hostname": "ckmpv2fz7jtdmpkmrun7yfgut4.vault-kms.service._.eu-3.platformsh.site",
"port": 8200,
"cluster": "rjify4yjcwxaa-master-7rqtwti",
"host": "vault-kms.internal",
"rel": "sign",
"path": "\/",
"query": {
"is_master": true
},
"password": "ChangeMe",
"type": "vault-kms:1.6",
"public": false,
"host_mapped": false
}
```

## Policies

Expand Down
18 changes: 8 additions & 10 deletions sites/platform/src/domains/steps/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ If you are an Enterprise or Elite customer and have a Grid or {{% names/dedicate

You need:

* A project that's ready to go live
* A domain with access to its settings with the registrar
* A registrar that allows `CNAME` records or [one of the alternatives](./dns.md) on [apex domains](../../other/glossary.md#apex-domain)
* Optional: The [CLI](../../administration/cli/_index.md) installed locally
* If you are on a development plan, you need to [upgrade your tier to a production plan](#1-change-your-plan-to-a-production-plan).
- A project that's ready to go live
- A domain with access to its settings with the registrar
- A registrar that allows `CNAME` records or [one of the alternatives](./dns.md) on [apex domains](../../other/glossary.md#apex-domain)
- Optional: The [CLI](../../administration/cli/_index.md) installed locally
- If you are on a development plan, you need to [upgrade your tier to a production plan](#1-change-your-plan-to-a-production-plan).

If you are planning to use several subdomains of the same domain on different projects,
see how to [manage multiple subdomains](/domains/steps/subdomains.md) *before* you add your domain to {{< vendor/name >}}.
Expand Down Expand Up @@ -86,11 +86,9 @@ platform environment:info edge_hostname
title=In the Console
+++

1. In the Console, open your Production environment.
2. Click **URLs** and copy the URL to your site excluding `https://`.

For example, if the automatically generated URL is `https://main-abcd123.abcdefgh1234567.eu.platformsh.site`,
the target is `main-abcd123.abcdefgh1234567.eu.platformsh.site`.
1. Navigate to your production environment and click **{{< icon settings >}} Settings**.
2. Select the **Domains** tab.
3. In the **Configure your domain** section, copy the content of the **CNAME record** field.

{{< /codetabs >}}

Expand Down
Loading

0 comments on commit f3f81ac

Please sign in to comment.