Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENDOC-598 linkchecker edits #613

Merged
merged 1 commit into from
Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ In order to fully understand the concepts explained in this piece of the documen

When a bundle containing a microservice is installed using the ECR, behind the scenes some actions take place.

1. To begin, an [EntandoPlugin custom resource](https://github.com/entando-k8s/entando-k8s-custom-model/blob/master/src/main/resources/crd/EntandoPluginCRD.yaml) is generated starting from the PluginDescriptor. Some fields will be automatically generated from the provided image.
1. To begin, an [EntandoPlugin custom resource](https://github.com/entando-k8s/entando-k8s-custom-model/blob/master/src/main/resources/crd/entandoplugins.entando.org.crd.yaml) is generated starting from the PluginDescriptor. Some fields will be automatically generated from the provided image.
- From the `image` field in the PluginDescriptor, we will extract the `organization`, `name` and `version` of the image.
- `organization`, `name` and `version` are then converted to valid characters and composed to form the plugin name (`metadata.name`), the labels (`metadata.labels`) and the ingressPath (`spec.ingressPath`) of the custom resource.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ entity Conference {
name String
}
```
3. Enhance this definition by adding fields, entities, table mappings, field validation, etc. This is easily accomplished with the [online JDL-Studio or corresponding JHipster IDE plugins/extensions](https://www.jhipster.tech/jdl/). For example:
3. Enhance this definition by adding fields, entities, table mappings, field validation, etc. This is easily accomplished with the [online JDL-Studio or corresponding JHipster IDE plugins/extensions](https://www.jhipster.tech/jdl/intro). For example:
```
entity Conference {
name String required
Expand Down
4 changes: 2 additions & 2 deletions vuepress/docs/next/tutorials/curate/ms-private-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ The standard deployment of Entando assumes that microservice images are pulled f
## Tutorial
The first step demonstrates how to create a Secret for Docker Hub. See the [corresponding Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry) for other options.

**1. Create the secret**
**1. Create the secret**
Supply the following parameters:
* The name of the new Secret, e.g. `my-docker-secret`
* The URL to your registry server. For Docker Hub, this is currently <https://index.docker.io/v1/>
* The URL to your registry server. For Docker Hub, this is currently `https://registry.hub.docker.com/`.
* Your Docker Hub username, password, and email.
* The Entando namespace, e.g. `entando` for a quickstart environment

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ In order to fully understand the concepts explained in this piece of the documen

When a bundle containing a microservice is installed using the ECR, behind the scenes some actions take place.

1. To begin, an [EntandoPlugin custom resource](https://github.com/entando-k8s/entando-k8s-custom-model/blob/master/src/main/resources/crd/EntandoPluginCRD.yaml) is generated starting from the PluginDescriptor. Some fields will be automatically generated from the provided image.
1. To begin, an [EntandoPlugin custom resource](https://github.com/entando-k8s/entando-k8s-custom-model/blob/master/src/main/resources/crd/entandoplugins.entando.org.crd.yaml) is generated starting from the PluginDescriptor. Some fields will be automatically generated from the provided image.
- From the `image` field in the PluginDescriptor, we will extract the `organization`, `name` and `version` of the image.
- `organization`, `name` and `version` are then converted to valid characters and composed to form the plugin name (`metadata.name`), the labels (`metadata.labels`) and the ingressPath (`spec.ingressPath`) of the custom resource.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ entity Conference {
name String
}
```
3. Enhance this definition by adding fields, entities, table mappings, field validation, etc. This is easily accomplished with the [online JDL-Studio or corresponding JHipster IDE plugins/extensions](https://www.jhipster.tech/jdl/). For example:
3. Enhance this definition by adding fields, entities, table mappings, field validation, etc. This is easily accomplished with the [online JDL-Studio or corresponding JHipster IDE plugins/extensions](https://www.jhipster.tech/jdl/intro). For example:
```
entity Conference {
name String required
Expand Down
2 changes: 1 addition & 1 deletion vuepress/docs/v7.1/tutorials/curate/ms-private-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The first step demonstrates how to create a Secret for Docker Hub. See the [corr
**1. Create the secret**
Supply the following parameters:
* The name of the new Secret, e.g. `my-docker-secret`
* The URL to your registry server. For Docker Hub, this is currently <https://index.docker.io/v1/>
* The URL to your registry server. For Docker Hub, this is currently `https://registry.hub.docker.com/`.
* Your Docker Hub username, password, and email.
* The Entando namespace, e.g. `entando` for a quickstart environment

Expand Down