Skip to content

Commit

Permalink
Added stronghold cli
Browse files Browse the repository at this point in the history
Signed-off-by: Maksim Kiselev <[email protected]>
  • Loading branch information
trublast committed Nov 3, 2024
1 parent 662f74a commit a8d46b6
Show file tree
Hide file tree
Showing 4 changed files with 1,196 additions and 37 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
branches:
- "main"

env:
PRIVATE_REPO: fox.flant.com
PRIVATE_REPO_TOKEN: ${{ secrets.PRIVATE_REPO_TOKEN }}

permissions:
contents: write

Expand All @@ -32,6 +36,9 @@ jobs:
- name: Setup Task
uses: arduino/setup-task@v2

- name: Setup private repo
run: git config --global url."https://gitlab-ci-token:${PRIVATE_REPO_TOKEN}@${PRIVATE_REPO}/".insteadOf https://${PRIVATE_REPO}/

- name: Build and package
run: task build-and-package

Expand Down Expand Up @@ -62,5 +69,8 @@ jobs:
- name: Setup Task
uses: arduino/setup-task@v2

- name: Run testss
- name: Setup private repo
run: git config --global url."https://gitlab-ci-token:${FOX_READ_TOKEN}@fox.flant.com/".insteadOf https://fox.flant.com/

- name: Run tests
run: task test
74 changes: 74 additions & 0 deletions cmd/stronghold.go
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)
}
Loading

0 comments on commit a8d46b6

Please sign in to comment.