-
Notifications
You must be signed in to change notification settings - Fork 14
[EDU-6790] Update-products-observe-reference #1851
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,14 +1,14 @@ | ||||||
--- | ||||||
title: Edge Services | ||||||
title: Azion Edge Services | ||||||
description: >- | ||||||
Azion Edge Services is a module for the Edge Orchestrator product that allows | ||||||
Azion Edge Services is a module for the Orchestrator product that allows | ||||||
orchestrated services to be managed within your own edge infrastructure. | ||||||
meta_tags: 'Services, Edge Computing' | ||||||
meta_tags: 'Edge Services, Edge Computing' | ||||||
namespace: documentation_products_edge_orchestrator_edge_services | ||||||
permalink: /documentation/products/deploy/edge-orchestrator/edge-services/ | ||||||
permalink: /documentation/products/deploy/orchestrator/edge-services/ | ||||||
--- | ||||||
|
||||||
**Azion Edge Services** is an **Edge Orchestrator** product module that allows orchestrated services to be managed in your own nodes, enabling the resources registration and other configurations via [Azion Console](https://console.azion.com) and the services creation and customization so that they can be orchestrated on the defined Edge Nodes. | ||||||
**Azion Edge Services** is an **Orchestrator** product module that allows orchestrated services to be managed in your own Edge Nodes, enabling the resources registration and other configurations via [Azion Console](https://console.azion.com) and the services creation and customization so that they can be orchestrated on the defined Edge Nodes. | ||||||
|
||||||
You can configure the install, uninstall, and reload triggers and define the dependencies between the resources needed to run your service on your edge network. | ||||||
|
||||||
|
@@ -18,13 +18,13 @@ You can configure the install, uninstall, and reload triggers and define the dep | |||||
|
||||||
| Scope | Guide | | ||||||
| - | - | | ||||||
| Edge Services| [Creating an Edge Service](/en/documentation/products/guides/edge-services-first-steps/) | | ||||||
| Edge Services| [Creating an Service](/en/documentation/products/guides/edge-services-first-steps/) | | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
--- | ||||||
|
||||||
## How it works | ||||||
|
||||||
By using Azion as your edge platform, you can create and customize services to run on private and hybrid edge networks. Azion **Edge Services** operates using triggers to install, uninstall, and reload. It defines dependencies between resources and natively implements a set of functions for Azion products, such as **Edge Application**, **Edge Firewall**, and **Edge Functions**, using **Azion Cells** technology from Azion as its basis. | ||||||
By using Azion as your edge platform, you can create and customize services to run on private and hybrid edge networks. Azion **Edge Services** operates using triggers to install, uninstall, and reload. It defines dependencies between resources and natively implements a set of functions for Azion products, such as **Applications**, **Firewall**, and **Functions**, using **Azion Cells** technology from Azion as its basis. | ||||||
|
||||||
This way, you can build edge applications for a wide variety of uses, such as hosting other applications, implementing AI, VR applications, and many others. To do so, you must activate Azion Cells and define the **Edge Nodes** that should host certain applications, all controlled by the Azion dashboard or APIs, in a centralized interface, and with different access controls. | ||||||
|
||||||
|
@@ -36,7 +36,7 @@ To be able to orchestrate services on your device, you need to configure all the | |||||
|
||||||
A **Text** type resource indicates that the content will be copied as plain text to the device. These resource types are typically used for configuration files. | ||||||
|
||||||
A **Shell Script** type resource indicates that the resource will be installed and ran according to the selected **trigger**. The Edge Orchestrator agent uses the sh-bang entered in the content header for script execution. In the absence of one, the POSIX-compliant **shell** on the device (`/bin/sh`) is used. | ||||||
A **Shell Script** type resource indicates that the resource will be installed and ran according to the selected **trigger**. The Orchestrator agent uses the sh-bang entered in the content header for script execution. In the absence of one, the POSIX-compliant **shell** on the device (`/bin/sh`) is used. | ||||||
|
||||||
Both resource types are compatible with the use of **variables** and **facts**, as long as the tag `{{ VARNAME }}` or `{{ FACT_NAME }}` is included. | ||||||
|
||||||
|
@@ -63,13 +63,13 @@ There are some special predefined variables that, as facts, cannot be overwritte | |||||
|
||||||
## Facts | ||||||
|
||||||
In addition to the defined variables, you can also use **Facts** which are available technical information about your node, such as architecture, client version, operating system, and operating system version. You can use these if you're setting up multiple nodes. | ||||||
In addition to the defined variables, you can also use **Facts** which are available technical information about your node, such as architecture, client version, operating system, and operating system version. You can use these if you're setting up multiple Edge Nodes. | ||||||
|
||||||
These values cannot be overwritten and can be used in **resources** using the `{{ FACT_NAME }}` tag. For example:<br /> `{{CLIENT_VERSION}}`. | ||||||
|
||||||
| Facts | Description | Value | Notes | | ||||||
| :---: | :---: | :---: | :---: | | ||||||
| CLIENT_VERSION | Edge Orchestrator agent version | MAJOR.MINOR.PATCH | For example: 1.10.3, where 1 is MAJOR, 10 is MINOR and 3 is PATCH | | ||||||
| CLIENT_VERSION | Orchestrator agent version | MAJOR.MINOR.PATCH | For example: 1.10.3, where 1 is MAJOR, 10 is MINOR and 3 is PATCH | | ||||||
| ARCH | Processor architecture | ARM or; AMD (x86), both with 32 or 64 bits | | | ||||||
| OS_NAME | Operating System distribution name | macOS; Linux; FreeBSD; OpenBSD; DragonFlyBSD; NetBSD; or Solaris | | | ||||||
| OS_DISTRO | Operating System distribution name, only for systems based on Linux | NAME + RELEASE | NAME: Debian; Ubuntu; openSUSE; Mint Linux; Gentoo; Fedora; CentOS; Arch Linux or; Kali Linux <br /> <br /> RELEASE: first obtaining via LSB Release, if there is no search in /etc/os-release the value of VERSION_ID or DISTRIB_RELEASE <br /> <br /> In the case of other Operating Systems the value will always be empty. | | ||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aqui nao sai o edge?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Não, confirmei com o Júlio e esses permanecem