Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: make config-server-sidecar and sidecar-dependent-app push-able #9

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions config-server-sidecar/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module example.com/configserver

go 1.21
2 changes: 2 additions & 0 deletions sidecar-dependent-app/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ source "http://rubygems.org"
gem "sinatra"
gem "json"
gem "typhoeus"
gem 'webrick'
gem 'rackup'

group :test, :development do
gem "rspec"
Expand Down
71 changes: 41 additions & 30 deletions sidecar-dependent-app/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,48 +1,59 @@
GEM
remote: http://rubygems.org/
specs:
diff-lcs (1.3)
ethon (0.12.0)
ffi (>= 1.3.0)
ffi (1.10.0)
json (2.1.0)
mustermann (1.0.3)
rack (2.0.6)
rack-protection (2.0.4)
rack
rack-test (0.8.3)
rack (>= 1.0, < 3)
rspec (3.7.0)
rspec-core (~> 3.7.0)
rspec-expectations (~> 3.7.0)
rspec-mocks (~> 3.7.0)
rspec-core (3.7.1)
rspec-support (~> 3.7.0)
rspec-expectations (3.7.0)
base64 (0.2.0)
diff-lcs (1.5.1)
ethon (0.16.0)
ffi (>= 1.15.0)
ffi (1.16.3)
json (2.7.1)
mustermann (3.0.0)
ruby2_keywords (~> 0.0.1)
rack (3.0.10)
rack-protection (4.0.0)
base64 (>= 0.1.0)
rack (>= 3.0.0, < 4)
rack-session (2.0.0)
rack (>= 3.0.0)
rack-test (2.1.0)
rack (>= 1.3)
rackup (2.1.0)
rack (>= 3)
webrick (~> 1.8)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.0)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.7.0)
rspec-mocks (3.7.0)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.7.0)
rspec-support (3.7.1)
sinatra (2.0.4)
mustermann (~> 1.0)
rack (~> 2.0)
rack-protection (= 2.0.4)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
ruby2_keywords (0.0.5)
sinatra (4.0.0)
mustermann (~> 3.0)
rack (>= 3.0.0, < 4)
rack-protection (= 4.0.0)
rack-session (>= 2.0.0, < 3)
tilt (~> 2.0)
tilt (2.0.9)
typhoeus (1.3.1)
tilt (2.3.0)
typhoeus (1.4.1)
ethon (>= 0.9.0)
webrick (1.8.1)

PLATFORMS
ruby

DEPENDENCIES
json
rack-test
rackup
rspec
sinatra
typhoeus
webrick

BUNDLED WITH
1.17.3
2 changes: 1 addition & 1 deletion sidecar-dependent-app/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ applications:
memory: 256M
env:
CONFIG_SERVER_PORT: 8082
stack: cflinuxfs3
stack: cflinuxfs4
sidecars:
- name: config-server
process_types:
Expand Down