uffizzi-cli 2.3.0 → 2.3.2
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.
- checksums.yaml +4 -4
- data/lib/uffizzi/services/cluster_service.rb +1 -1
- data/lib/uffizzi/version.rb +1 -1
- data/man/uffizzi-dev-describe.ronn +1 -6
- data/man/uffizzi-dev-start.ronn +0 -13
- data/man/uffizzi-dev-stop.ronn +5 -17
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd741b540d646f3bd11c933ecf7382a53cf33707ae5622e0fa4ab9b8c6bdbf44
|
|
4
|
+
data.tar.gz: 6c7dbdb943c97215c93d360cae2678ccc320e4cb224a1530a4e291a5e2389a1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
128
|
+
host: cluster_data[:host],
|
|
129
129
|
}
|
|
130
130
|
end
|
|
131
131
|
end
|
data/lib/uffizzi/version.rb
CHANGED
|
@@ -3,7 +3,7 @@ uffizzi-dev-describe - show metadata for a dev environment
|
|
|
3
3
|
================================================================
|
|
4
4
|
|
|
5
5
|
## SYNOPSIS
|
|
6
|
-
uffizzi dev describe
|
|
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:
|
data/man/uffizzi-dev-start.ronn
CHANGED
|
@@ -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
|
|
data/man/uffizzi-dev-stop.ronn
CHANGED
|
@@ -5,23 +5,11 @@ uffizzi-dev-stop - stop a development environment
|
|
|
5
5
|
uffizzi dev stop
|
|
6
6
|
|
|
7
7
|
## DESCRIPTION
|
|
8
|
-
Stops
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|