shippy 0.2.11 → 0.2.12
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/shippy/service.rb +12 -3
- data/lib/shippy/version.rb +1 -1
- 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: c4e3f5f400808c883fa91528163ad43b6cf59a684de6098f6cf84d2280bceb6f
|
|
4
|
+
data.tar.gz: 6c88103ecf9bb527e10df29342ea3c42e295034276917e52fd3ef6673f4552f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a53817d6b8d7265f92ed2f8eb20b4113212ff07c6439c8516fb3ecfc21bd6e853ee684796aa892ddb7dd6863fba3a9b8dfedcf60a29da3efcbdadc5c7827082
|
|
7
|
+
data.tar.gz: c382e22e152c811c8511bed4ee639f55c09363fad98fc3e13b5eea72d81da11d7bcdd60942b523c9e3683033fc33287fbf05e76ab210b3ece3867af925b3a2ea
|
data/lib/shippy/service.rb
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
module Shippy
|
|
2
2
|
class Service
|
|
3
3
|
ATTRIBUTES = %i[
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
annotations attach build blkio_config cpu_count cpu_percent cpu_shares cpu_period
|
|
5
|
+
cpu_quota cpu_rt_runtime cpu_rt_period cpus cpuset cap_add cap_drop cgroup
|
|
6
|
+
cgroup_parent command configs container_name credential_spec depends_on deploy
|
|
7
|
+
develop device_cgroup_rules devices dns dns_opt dns_search domainname driver_opts
|
|
8
|
+
entrypoint env_file environment expose extends external_links extra_hosts gpus
|
|
9
|
+
group_add healthcheck hostname image init ipc isolation labels label_file links
|
|
10
|
+
logging mac_address mem_limit mem_reservation mem_swappiness memswap_limit models
|
|
11
|
+
network_mode networks oom_kill_disable oom_score_adj pid pids_limit platform
|
|
12
|
+
ports post_start pre_stop privileged profiles provider pull_policy read_only
|
|
13
|
+
restart runtime scale secrets security_opt shm_size stdin_open stop_grace_period
|
|
14
|
+
stop_signal storage_opt sysctls tmpfs tty ulimits use_api_socket user
|
|
15
|
+
userns_mode uts volumes volumes_from working_dir
|
|
7
16
|
].freeze
|
|
8
17
|
|
|
9
18
|
attr_reader :name, :app
|
data/lib/shippy/version.rb
CHANGED