uffizzi-cli 2.3.0 → 2.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83386128e61e690def2d6afac8c8d09fe91c7f112b4834a387d74e06f04b43b4
4
- data.tar.gz: 5f08710f3bb799a023fd82b8c9b1bf6e97761df925a700b45e1a8c9485e40829
3
+ metadata.gz: dd741b540d646f3bd11c933ecf7382a53cf33707ae5622e0fa4ab9b8c6bdbf44
4
+ data.tar.gz: 6c7dbdb943c97215c93d360cae2678ccc320e4cb224a1530a4e291a5e2389a1d
5
5
  SHA512:
6
- metadata.gz: 596014564e49050fbac5f36d05c47a98caf5e1bcfab48b05e4eb5ae24514c505829015430f1b1dddcf3f74690a275723f4f341c3bdd36b3f4ded718ad3573baf
7
- data.tar.gz: a29224185eb40b02af15e7359e3bbfa1be06d4d76d51d3cfbb60add345d0f29f7b978dd22fc1687ca714683719db90c688b06581b815a387fd61dd1b96a78de4
6
+ metadata.gz: 64615a52a9128c0ef9cf1ec7427c979ed4902407aff0e560ce10d7db1461b05a20cf15764604eed6b71f669f80b464baffbf8629f64123d5c6584bb55a9c8fb9
7
+ data.tar.gz: 7fd68a402afc6f0692f59f1d0f7217e4adf9ac73ef520c114a7f50c96310a6a65bd20aa61225e83b71fc2090480413bf112091901ca52ef2f0df1bc5f801eab9
@@ -125,7 +125,7 @@ class ClusterService
125
125
  name: cluster_data[:name],
126
126
  status: cluster_data[:state],
127
127
  created: Time.strptime(cluster_data[:created_at], '%Y-%m-%dT%H:%M:%S.%N').strftime('%a %b %d %H:%M:%S %Y'),
128
- url: cluster_data[:host],
128
+ host: cluster_data[:host],
129
129
  }
130
130
  end
131
131
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uffizzi
4
- VERSION = '2.3.0'
4
+ VERSION = '2.3.2'
5
5
  end
@@ -3,7 +3,7 @@ uffizzi-dev-describe - show metadata for a dev environment
3
3
  ================================================================
4
4
 
5
5
  ## SYNOPSIS
6
- uffizzi dev describe <NAME>
6
+ uffizzi dev describe
7
7
 
8
8
  ## DESCRIPTION
9
9
  Shows metadata for a dev environment
@@ -15,11 +15,6 @@ uffizzi-dev-describe - show metadata for a dev environment
15
15
  For more information on Uffizzi clusters, see:
16
16
  https://docs.uffizzi.com/references/cli/
17
17
 
18
- ## POSITIONAL ARGUMENTS
19
- [NAME]
20
- NAME for the dev environment you want to describe.
21
- This is an optional argument.
22
-
23
18
  ## EXAMPLES
24
19
  The following command prints metadata for the dev
25
20
  environment:
@@ -20,8 +20,6 @@ uffizzi-dev-start - start a development environment
20
20
  supported. For help creating a skaffold.yaml file, see:
21
21
  https://skaffold.dev/docs/init/
22
22
 
23
- If a kubeconfig exists
24
-
25
23
  For more information on Uffizzi clusters, see:
26
24
  https://docs.uffizzi.com/references/cli/
27
25
 
@@ -73,17 +71,6 @@ uffizzi-dev-start - start a development environment
73
71
 
74
72
  $ uffizzi dev start --quiet
75
73
 
76
- To push your build artifacts to a private Docker Hub repo
77
- called 'acme/foo', first add your Docker Hub credentials:
78
-
79
- $ uffizzi connect docker-hub
80
- (See `uffizzi connect -h` for other registry options)
81
-
82
- ...then override the default repo:
83
-
84
- $ uffizzi dev start \
85
- --default-repo="hub.docker.com/acme/foo"
86
-
87
74
  To start a dev environment using an alternate kubeconfig file,
88
75
  run:
89
76
 
@@ -5,23 +5,11 @@ uffizzi-dev-stop - stop a development environment
5
5
  uffizzi dev stop
6
6
 
7
7
  ## DESCRIPTION
8
- Stops a dev environment and deletes the backing
9
- Uffizzi cluster resources, including any persistent
10
- volumes, and the namespace itself. The Uffizzi
11
- cluster config is deleted from the kubeconfig file.
12
-
13
- This command watches for file changes in a given local
14
- project directory, as specified in your configuration file.
15
- It then serializes those changes and redeploys them onto
16
- a Uffizzi cluster.
17
-
18
- The command looks for a configuration at the specified
19
- path CONFIG_FILE. Skaffold configurations are currently
20
- supported. For help creating a skaffold.yaml file, see:
21
- https://skaffold.dev/docs/init/
22
-
23
- For more information on Uffizzi clusters, see:
24
- https://docs.uffizzi.com/references/cli/
8
+ Stops the skaffold process for the dev environment.
9
+ This command does not delete the dev cluster or any
10
+ associated resources. You can restart the dev environment
11
+ with `uffizzi dev start`. To delete the dev cluster entirely, see
12
+ `uffizzi dev delete`.
25
13
 
26
14
  ## FLAGS
27
15
  --help, -h
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uffizzi-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Thurman