forked from meshery/meshery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/meshery/meshery into RTK-…
…migration-mesh-adapter Signed-off-by: Senthil Athiban <[email protected]>
- Loading branch information
Showing
144 changed files
with
7,738 additions
and
123 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,23 @@ | ||
--- | ||
component: 1.23.0-rc.1 | ||
integrations: | ||
- authorizationpolicy.Istio | ||
- destinationrule.Istio | ||
- envoyfilter.Istio | ||
- gateway.Istio | ||
- grafanaistioaddon_meshmodel.json | ||
- istioMesh_meshmodel.json | ||
- jaegeristioaddon_meshmodel.json | ||
- peerauthentication.Istio | ||
- prometheusistioaddon_meshmodel.json | ||
- proxyconfig.Istio | ||
- requestauthentication.Istio | ||
- serviceentry.Istio | ||
- sidecar.Istio | ||
- telemetry.Istio | ||
- virtualservice.Istio | ||
- wasmplugin.Istio | ||
- workloadentry.Istio | ||
- workloadgroup.Istio | ||
- zipkinistioaddon_meshmodel.json | ||
--- |
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
97 changes: 97 additions & 0 deletions
97
docs/pages/reference/mesheryctl/mesheryctl-adapter-deploy.md
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,97 @@ | ||
--- | ||
layout: default | ||
title: mesheryctl-adapter-deploy | ||
permalink: reference/mesheryctl/adapter/deploy | ||
redirect_from: reference/mesheryctl/adapter/deploy/ | ||
type: reference | ||
display-title: "false" | ||
language: en | ||
command: adapter | ||
subcommand: deploy | ||
--- | ||
|
||
# mesheryctl adapter deploy | ||
|
||
Deploy infrastructure to the Kubernetes cluster | ||
|
||
## Synopsis | ||
|
||
Deploy infrastructure to the connected Kubernetes cluster | ||
<pre class='codeblock-pre'> | ||
<div class='codeblock'> | ||
mesheryctl adapter deploy [flags] | ||
|
||
</div> | ||
</pre> | ||
|
||
## Examples | ||
|
||
Deploy a infrastructure from an interactive on the default namespace | ||
<pre class='codeblock-pre'> | ||
<div class='codeblock'> | ||
mesheryctl adapter deploy | ||
|
||
</div> | ||
</pre> | ||
|
||
Deploy infrastructure | ||
<pre class='codeblock-pre'> | ||
<div class='codeblock'> | ||
mesheryctl adapter deploy linkerd | ||
|
||
</div> | ||
</pre> | ||
|
||
Deploy Linkerd mesh on a specific namespace | ||
<pre class='codeblock-pre'> | ||
<div class='codeblock'> | ||
mesheryctl adapter deploy linkerd --namespace linkerd-ns | ||
|
||
</div> | ||
</pre> | ||
|
||
Deploy Linkerd mesh and wait for it to be deployed | ||
<pre class='codeblock-pre'> | ||
<div class='codeblock'> | ||
mesheryctl adapter deploy linkerd --watch | ||
|
||
</div> | ||
</pre> | ||
|
||
<pre class='codeblock-pre'> | ||
<div class='codeblock'> | ||
|
||
|
||
</div> | ||
</pre> | ||
|
||
## Options | ||
|
||
<pre class='codeblock-pre'> | ||
<div class='codeblock'> | ||
-h, --help help for deploy | ||
-n, --namespace string Kubernetes namespace to be used for deploying the validation tests and sample workload (default "default") | ||
-t, --token string Path to token for authenticating to Meshery API | ||
-w, --watch Watch for events and verify operation (in beta testing) | ||
|
||
</div> | ||
</pre> | ||
|
||
## Options inherited from parent commands | ||
|
||
<pre class='codeblock-pre'> | ||
<div class='codeblock'> | ||
--config string path to config file (default "/home/runner/.meshery/config.yaml") | ||
-v, --verbose verbose output | ||
|
||
</div> | ||
</pre> | ||
|
||
## Screenshots | ||
|
||
Usage of mesheryctl adapter deploy | ||
![mesh-deploy-usage](/assets/img/mesheryctl/deploy-mesh.png) | ||
|
||
## See Also | ||
|
||
Go back to [command reference index](/reference/mesheryctl/), if you want to add content manually to the CLI documentation, please refer to the [instruction](/project/contributing/contributing-cli#preserving-manually-added-documentation) for guidance. |
Oops, something went wrong.