-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Maksim Kiselev <[email protected]>
- Loading branch information
Showing
4 changed files
with
1,196 additions
and
37 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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
Copyright 2024 Flant JSC | ||
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 cmd | ||
|
||
import ( | ||
vaultcommand "github.com/hashicorp/vault/command" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
type Commands struct { | ||
Command string | ||
Description string | ||
} | ||
|
||
func init() { | ||
|
||
strongholdCommands := []Commands{ | ||
{"read", "Read data and retrieves secrets"}, | ||
{"write", "Write data, configuration, and secrets"}, | ||
{"delete", "Delete secrets and configuration"}, | ||
{"list", "List data or secrets"}, | ||
{"login", "Authenticate locally"}, | ||
{"status", "Print seal and HA status"}, | ||
{"unwrap", "Unwrap a wrapped secret"}, | ||
{"kv", "Interact with Stronghold's Key-Value storage"}, | ||
{"policy", "Interact with policies"}, | ||
{"pki", "Interact with Stronghold's PKI Secrets Engine"}, | ||
{"operator", "Perform operator-specific tasks"}, | ||
{"secrets", "Interact with secrets engines"}, | ||
{"token", "Interact with tokens"}, | ||
{"lease", "Interact with leases"}, | ||
{"transit", "Interact with Stronghold's Transit Secrets Engine"}, | ||
{"auth", "Interact with auth methods"}, | ||
{"print", "Prints runtime configurations"}, | ||
} | ||
|
||
strongholdCmd := &cobra.Command{ | ||
Use: "stronghold", | ||
Short: "Deckhouse Stronghold commands", | ||
SilenceErrors: true, | ||
SilenceUsage: true, | ||
} | ||
|
||
for _, cmd := range strongholdCommands { | ||
stronghold_command := []string{cmd.Command} | ||
strongholdSubCmd := &cobra.Command{ | ||
Use: cmd.Command, | ||
Short: cmd.Description, | ||
DisableFlagParsing: true, | ||
SilenceErrors: true, | ||
SilenceUsage: true, | ||
Run: func(cmd *cobra.Command, args []string) { | ||
vaultcommand.Run(append(stronghold_command, args...)) | ||
}, | ||
} | ||
strongholdCmd.AddCommand(strongholdSubCmd) | ||
} | ||
|
||
rootCmd.AddCommand(strongholdCmd) | ||
} |
Oops, something went wrong.