This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Wulf-Thilo Schreiter
committed
Apr 19, 2020
1 parent
e5813b0
commit 2d53860
Showing
6 changed files
with
132 additions
and
4 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
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,31 @@ | ||
// Copyright © 2020 Bitgrip <[email protected]> | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package delete | ||
|
||
var deleteLongDescription = `Deletes an rancher resouce. | ||
### Supported resource types: | ||
* namespace | ||
* certificate - NOT YET IMPLEMENTED | ||
* config-map - NOT YET IMPLEMENTED | ||
* docker-credential - NOT YET IMPLEMENTED | ||
* secret - NOT YET IMPLEMENTED | ||
* app | ||
* job | ||
* cron-job - NOT YET IMPLEMENTED | ||
* deployment - NOT YET IMPLEMENTED | ||
* daemon-set - NOT YET IMPLEMENTED | ||
* stateful-set - NOT YET IMPLEMENTED` |
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,39 @@ | ||
## cattlectl list | ||
|
||
Lists an rancher resouce | ||
|
||
### Synopsis | ||
|
||
Lists an rancher resouce | ||
|
||
``` | ||
cattlectl list TYPE [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for list | ||
--namespace string The namespace of the project to list resouces from | ||
--pattern string Match pattern to filter resouce names | ||
--project-name string The name of the project to list resouces from | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--access-key string The access key to access rancher with | ||
--cluster-id string The ID of the cluster the project is part of | ||
--cluster-name string The name of the cluster the project is part of | ||
--config string config file (default is $HOME/.cattlectl.yaml) | ||
--insecure-api If Rancher uses a self signed certificate | ||
--log-json if to log using json format | ||
--rancher-url string The URL to reach the rancher | ||
--secret-key string The secret key to access rancher with | ||
-v, --verbosity int verbosity level to use | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [cattlectl](cattlectl.md) - controll your cattle on the ranch | ||
|