homebrew-homebrew VS show-secrets

Compare homebrew-homebrew vs show-secrets and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
homebrew-homebrew show-secrets
1 1
0 1
- -
0.0 1.8
over 2 years ago over 2 years ago
Ruby Go
- MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

homebrew-homebrew

Posts with mentions or reviews of homebrew-homebrew. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-07-29.

show-secrets

Posts with mentions or reviews of show-secrets. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-07-29.
  • Creating your own Homebrew tap and grabbing binaries from S3
    2 projects | dev.to | 29 Jul 2021
    class ShowSecrets < Formula desc "CLI to show decoded Kubernetes secrets" homepage "https://github.com/lucassha/show-secrets" url "https://lucassha-show-secrets-releases.s3.us-west-2.amazonaws.com/releases/v0.0.1" # to get the latest SHA: # find latest release: aws s3api list-objects --bucket lucassha-show-secrets-releases | jq '.Contents[].Key' # download release: aws s3 cp s3://lucassha-show-secrets-releases/releases/v0.0.1 . # get sha: shasum -a 256 v0.0.1 sha256 "36018cff6708dea3587c086e366ff80bed7a2750ddda9aa7e8c1af8311b17649" depends_on "kubernetes-cli" def install bin.install "show-secrets" # add kubectl binary to make it a kubectl plugin bin.install "kubectl-show-secrets" end def caveats; <<-EOS This tool may be used as a standalone CLI or a kubectl plugin # example show-secrets -n default kubectl show secrets -n default EOS end end