vagrant-orbstack 0.1.0
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 +7 -0
- data/CHANGELOG.md +155 -0
- data/LICENSE +21 -0
- data/README.md +622 -0
- data/lib/vagrant-orbstack/action/create.rb +177 -0
- data/lib/vagrant-orbstack/action/destroy.rb +90 -0
- data/lib/vagrant-orbstack/action/halt.rb +64 -0
- data/lib/vagrant-orbstack/action/machine_validation.rb +60 -0
- data/lib/vagrant-orbstack/action/reload.rb +56 -0
- data/lib/vagrant-orbstack/action/ssh_run.rb +70 -0
- data/lib/vagrant-orbstack/action/start.rb +68 -0
- data/lib/vagrant-orbstack/action.rb +21 -0
- data/lib/vagrant-orbstack/config.rb +161 -0
- data/lib/vagrant-orbstack/errors.rb +64 -0
- data/lib/vagrant-orbstack/plugin.rb +45 -0
- data/lib/vagrant-orbstack/provider.rb +387 -0
- data/lib/vagrant-orbstack/util/machine_namer.rb +130 -0
- data/lib/vagrant-orbstack/util/orbstack_cli.rb +283 -0
- data/lib/vagrant-orbstack/util/ssh_readiness_checker.rb +115 -0
- data/lib/vagrant-orbstack/util/state_cache.rb +106 -0
- data/lib/vagrant-orbstack/version.rb +7 -0
- data/lib/vagrant-orbstack.rb +36 -0
- data/locales/en.yml +49 -0
- metadata +69 -0
data/locales/en.yml
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
en:
|
|
2
|
+
vagrant_orbstack:
|
|
3
|
+
errors:
|
|
4
|
+
orbstack_not_installed: |-
|
|
5
|
+
OrbStack CLI not found. The 'orb' command is not available in your PATH.
|
|
6
|
+
|
|
7
|
+
To fix this issue:
|
|
8
|
+
1. Install OrbStack from https://orbstack.dev/
|
|
9
|
+
2. Ensure the 'orb' command is in your PATH
|
|
10
|
+
3. Restart your terminal and try again
|
|
11
|
+
|
|
12
|
+
orbstack_not_running: |-
|
|
13
|
+
OrbStack is not running. Please start OrbStack before using this provider.
|
|
14
|
+
|
|
15
|
+
To fix this issue:
|
|
16
|
+
1. Open the OrbStack application
|
|
17
|
+
2. Wait for it to fully start
|
|
18
|
+
3. Try your Vagrant command again
|
|
19
|
+
|
|
20
|
+
command_execution_error: |-
|
|
21
|
+
Failed to execute OrbStack CLI command: %{command}
|
|
22
|
+
|
|
23
|
+
Error details: %{details}
|
|
24
|
+
|
|
25
|
+
Please check that OrbStack is properly installed and running.
|
|
26
|
+
|
|
27
|
+
ssh_not_ready: |-
|
|
28
|
+
SSH is not ready on machine '%{machine_name}'.
|
|
29
|
+
|
|
30
|
+
The machine exists but SSH service is not yet available. This typically
|
|
31
|
+
happens when the machine is still booting or the SSH daemon is starting.
|
|
32
|
+
|
|
33
|
+
Please wait a few moments and try again. If the problem persists, check
|
|
34
|
+
that the machine is fully started and SSH is enabled.
|
|
35
|
+
|
|
36
|
+
ssh_connection_failed: |-
|
|
37
|
+
Failed to establish SSH connection to machine '%{machine_name}'.
|
|
38
|
+
|
|
39
|
+
Reason: %{reason}
|
|
40
|
+
|
|
41
|
+
This error occurs when SSH connection attempts fail after the machine
|
|
42
|
+
appears ready. Common causes include:
|
|
43
|
+
|
|
44
|
+
- Network connectivity issues
|
|
45
|
+
- SSH authentication problems
|
|
46
|
+
- Firewall blocking connections
|
|
47
|
+
- SSH service crashed after initial startup
|
|
48
|
+
|
|
49
|
+
Check the machine's SSH configuration and network settings.
|
metadata
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: vagrant-orbstack
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Spiral House
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Enables OrbStack as a Vagrant provider for managing Linux development
|
|
13
|
+
environments on macOS
|
|
14
|
+
email:
|
|
15
|
+
- opensource@spiralhouse.io
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- CHANGELOG.md
|
|
21
|
+
- LICENSE
|
|
22
|
+
- README.md
|
|
23
|
+
- lib/vagrant-orbstack.rb
|
|
24
|
+
- lib/vagrant-orbstack/action.rb
|
|
25
|
+
- lib/vagrant-orbstack/action/create.rb
|
|
26
|
+
- lib/vagrant-orbstack/action/destroy.rb
|
|
27
|
+
- lib/vagrant-orbstack/action/halt.rb
|
|
28
|
+
- lib/vagrant-orbstack/action/machine_validation.rb
|
|
29
|
+
- lib/vagrant-orbstack/action/reload.rb
|
|
30
|
+
- lib/vagrant-orbstack/action/ssh_run.rb
|
|
31
|
+
- lib/vagrant-orbstack/action/start.rb
|
|
32
|
+
- lib/vagrant-orbstack/config.rb
|
|
33
|
+
- lib/vagrant-orbstack/errors.rb
|
|
34
|
+
- lib/vagrant-orbstack/plugin.rb
|
|
35
|
+
- lib/vagrant-orbstack/provider.rb
|
|
36
|
+
- lib/vagrant-orbstack/util/machine_namer.rb
|
|
37
|
+
- lib/vagrant-orbstack/util/orbstack_cli.rb
|
|
38
|
+
- lib/vagrant-orbstack/util/ssh_readiness_checker.rb
|
|
39
|
+
- lib/vagrant-orbstack/util/state_cache.rb
|
|
40
|
+
- lib/vagrant-orbstack/version.rb
|
|
41
|
+
- locales/en.yml
|
|
42
|
+
homepage: https://github.com/spiralhouse/vagrant-orbstack-provider
|
|
43
|
+
licenses:
|
|
44
|
+
- MIT
|
|
45
|
+
metadata:
|
|
46
|
+
homepage_uri: https://github.com/spiralhouse/vagrant-orbstack-provider
|
|
47
|
+
source_code_uri: https://github.com/spiralhouse/vagrant-orbstack-provider
|
|
48
|
+
bug_tracker_uri: https://github.com/spiralhouse/vagrant-orbstack-provider/issues
|
|
49
|
+
changelog_uri: https://github.com/spiralhouse/vagrant-orbstack-provider/blob/main/CHANGELOG.md
|
|
50
|
+
documentation_uri: https://github.com/spiralhouse/vagrant-orbstack-provider
|
|
51
|
+
allowed_push_host: https://rubygems.org
|
|
52
|
+
rdoc_options: []
|
|
53
|
+
require_paths:
|
|
54
|
+
- lib
|
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: 3.2.0
|
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
|
+
requirements:
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: '0'
|
|
65
|
+
requirements: []
|
|
66
|
+
rubygems_version: 3.7.1
|
|
67
|
+
specification_version: 4
|
|
68
|
+
summary: Vagrant provider for OrbStack
|
|
69
|
+
test_files: []
|