k8sCertsFlatify 0.1.0-universal-linux → 0.1.2-universal-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/k8sCertsFlatify.rb +3 -3
  3. metadata +10 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60516c53924fea13e7ec6a4b244942bdf1b413434a4baafa5a45bc34d09190d4
4
- data.tar.gz: 773342e530314e16e1b6f365482ebe836a4b007f14099ad2efc4585b1ee8357a
3
+ metadata.gz: 3f5e347767cd5fa7b1f38b431c408a7d18c51b1a9b6ab920926da4bd924e427f
4
+ data.tar.gz: fc8c98aba669413f18aac6255dc7f73724fbbb6960c5e3f0354b88c1da3a6c96
5
5
  SHA512:
6
- metadata.gz: 79a8f0b49a9891ad41c59842cabff067c8895b5f258fc0fa20a39fd1e73ad320f7c062b21a347b299c39a13c766ca3cda499ccd6aba5f834cbbb263f36432189
7
- data.tar.gz: dd67c748b2f549151a7e3b8a57fae375864f7f918f0ff2aaa9c0cf282ffa86c602ed1475934783ad72b6d89e0278e0a809f5f7ae8a2c57a7ec07925c8b71dceb
6
+ metadata.gz: 5da993e919669970cac20ffa11ec8530cc33d2e359f5cc7542f88540288b527c2bf8b1c4b7087a3807bf33c6e70a49e5f182ef2b016b1b3290d6202df0b9e592
7
+ data.tar.gz: a5c0c818d5d0ec0fb86090f0d7b03f30fd59c80e354574ed175e4aa59abb4c375826feb7aa2f20a8daebcadadb647210cbbe31466c8715dd690542813927c085
@@ -38,12 +38,12 @@ else
38
38
  end
39
39
  @bearer = "Bearer #{kubeContext.auth_options[:bearer_token]}"
40
40
  # API endpoint templates for all ingress
41
- @allingendpoint = "apis/networking.k8s.io/v1/ingresses"
41
+ @allingendpoint = "/apis/networking.k8s.io/v1/ingresses"
42
42
  # API endpoint templates for single ingress
43
- @aningendpoint = "apis/networking.k8s.io/v1/namespaces/$${namespace}/ingresses"
43
+ @aningendpoint = "/apis/networking.k8s.io/v1/namespaces/$${namespace}/ingresses"
44
44
  # old k8s
45
45
  # @allingendpoint = "apis/networking.k8s.io/v1beta1/ingresses"
46
- @secendpoint = "api/v1/namespaces/$${namespace}/secrets/$${name}"
46
+ @secendpoint = "/api/v1/namespaces/$${namespace}/secrets/$${name}"
47
47
  @server = kubeContext.api_endpoint
48
48
  # TODO: Could not get CA certificate.
49
49
  # puts kubeContext.ssl_options[:cert_store].class
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: k8sCertsFlatify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: universal-linux
6
6
  authors:
7
7
  - dE
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-05 00:00:00.000000000 Z
11
+ date: 2025-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: curb
@@ -52,7 +52,14 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '4'
55
- description:
55
+ description: |-
56
+ A script which extracts 1 or multiple tls/ssl certificates from a kubernetes cluster to PWD.
57
+ NOTE: Will not check the TLS certificate of the connecting kubernetes cluster as of the current time.
58
+ Switch --kubeconfig/-c <kubernetes kubeconfig file>. If not present default to ~/.kube/config
59
+ switch --namespaces/-n -- Namespace to dump certificates in. If not present, will dump certificates of all namespaces.
60
+ --context/-k -- The context to use in the kubeconfig file.
61
+ --dumpdir/-d -- Dump certificates to this directory instead of PWD
62
+ Will dump certificates in PWD in a directory with the name as the DNS to which the certificate belongs.
56
63
  email: de.techno@gmail.com
57
64
  executables:
58
65
  - k8sCertsFlatify.rb