-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1661 from Andygol/main-uk
[uk] add translation Go SDK and examples documentation
- Loading branch information
Showing
16 changed files
with
148 additions
and
72 deletions.
There are no files selected for viewing
This file contains 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 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,6 +1,6 @@ | ||
--- | ||
title: "Спільнота" | ||
weight: 7 | ||
weight: 8 | ||
--- | ||
|
||
# Настанови спільноти {#community-guides} | ||
|
This file contains 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 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 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 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,6 +1,6 @@ | ||
--- | ||
title: "Часті питання" | ||
weight: 8 | ||
weight: 9 | ||
--- | ||
|
||
# Часті питання | ||
|
This file contains 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 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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Go SDK" | ||
weight: 7 | ||
--- |
This file contains 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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
title: "Приклади" | ||
description: "Приклади різних функцій Helm SDK" | ||
weight: 2 | ||
--- | ||
|
||
Цей документ містить серію прикладів використання Helm SDK. Призначений для документування різних функціональних можливостей SDK. | ||
|
||
Останній приклад показує драйвер `main.go` ([посилання](#driver)). Він виконує наведені нижче дії та включає необхідні допоміжні функції. | ||
|
||
Код для прикладів знаходиться в директорії [helm/helm-www/sdkexamples/](https://github.com/helm/helm-www/sdkexamples). І він повністю функціональний. | ||
|
||
## Дії {#actions} | ||
|
||
### Встановлення (Install) {#install-action} | ||
|
||
Цей приклад встановлює вказаний чарт/реліз для вказаної версії та значень: | ||
|
||
{{< highlightexamplego file="sdkexamples/install.go" >}} | ||
|
||
### Оновлення (Upgrade) {#upgrade-action} | ||
|
||
Цей приклад оновлює вказаний реліз з вказаним чартом, версією та значеннями: | ||
|
||
{{< highlightexamplego file="sdkexamples/upgrade.go" >}} | ||
|
||
### Видалення (Uninstall) {#uninstall-action} | ||
|
||
Цей приклад видаляє вказаний реліз | ||
|
||
{{< highlightexamplego file="sdkexamples/uninstall.go" >}} | ||
|
||
### Виводу списку чартів (List) {#list-action} | ||
|
||
Цей приклад показує всі чарти (в поточному налаштованому просторі імен) | ||
|
||
{{< highlightexamplego file="sdkexamples/list.go" >}} | ||
|
||
### Завантаження чартів (Pull) {#pull-action} | ||
|
||
Цей приклад завантажує чарт з OCI репозиторію | ||
|
||
{{< highlightexamplego file="sdkexamples/pull.go" >}} | ||
|
||
## Драйвер {#driver} | ||
|
||
Тут драйвер показує необхідні допоміжні функції, потрібні для роботи дій Helm SDK. І показує наведені вище приклади в дії, щоб завантажити, встановити, оновити та видалити чарт 'podinfo' з OCI репозиторію. | ||
|
||
{{< highlightexamplego file="sdkexamples/main.go" >}} |
Oops, something went wrong.