rubypitaya 1.4.1 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rubypitaya/app-template/Gemfile +1 -1
  3. data/lib/rubypitaya/app-template/Gemfile.lock +2 -2
  4. data/lib/rubypitaya/app-template/Makefile +9 -1
  5. data/lib/rubypitaya/app-template/app/handlers/hello_world_handler.rb +10 -8
  6. data/lib/rubypitaya/app-template/config/routes.rb +11 -0
  7. data/lib/rubypitaya/app-template/docker-compose.yml +1 -1
  8. data/lib/rubypitaya/app-template/docker/dev/Dockerfile +1 -1
  9. data/lib/rubypitaya/app-template/docker/prod/Dockerfile +1 -1
  10. data/lib/rubypitaya/app-template/kubernetes/README.md +60 -0
  11. data/lib/rubypitaya/app-template/kubernetes/deployment-connector.yaml +35 -0
  12. data/lib/rubypitaya/app-template/kubernetes/deployment-rubypitaya.yaml +48 -0
  13. data/lib/rubypitaya/app-template/kubernetes/persistent-volume.yaml +11 -0
  14. data/lib/rubypitaya/app-template/kubernetes/service-connector.yaml +12 -0
  15. data/lib/rubypitaya/app-template/kubernetes/service-etcd.yaml +17 -0
  16. data/lib/rubypitaya/app-template/kubernetes/service-nats.yaml +12 -0
  17. data/lib/rubypitaya/app-template/kubernetes/service-postgres.yaml +12 -0
  18. data/lib/rubypitaya/app-template/kubernetes/service-redis.yaml +13 -0
  19. data/lib/rubypitaya/app-template/kubernetes/service-rubypitaya.yaml +12 -0
  20. data/lib/rubypitaya/app-template/kubernetes/statefulset-etcd.yaml +25 -0
  21. data/lib/rubypitaya/app-template/kubernetes/statefulset-nats.yaml +23 -0
  22. data/lib/rubypitaya/app-template/kubernetes/statefulset-postgres.yaml +35 -0
  23. data/lib/rubypitaya/app-template/kubernetes/statefulset-redis.yaml +23 -0
  24. data/lib/rubypitaya/core/handler_router.rb +18 -1
  25. data/lib/rubypitaya/core/main.rb +3 -1
  26. data/lib/rubypitaya/core/path.rb +2 -0
  27. data/lib/rubypitaya/core/routes_base.rb +36 -0
  28. data/lib/rubypitaya/version.rb +1 -1
  29. metadata +19 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c48497c9641d832115ba3afc04d0a5fca2ddda41432d7e575ac51df4b1043ecc
4
- data.tar.gz: ca9b999ce0c3e1944b82928413b31e76437101eb2be55ff8e7b71d5a6e352e5c
3
+ metadata.gz: 9f720d0d81fffae4bb38fefce2c8048a948d5fb70b3b87f9b5c04cd0c167bfed
4
+ data.tar.gz: 780f7133b9c2d5b48a287488b99c7acb6d24a9ef531711877e6c810b37528b21
5
5
  SHA512:
6
- metadata.gz: 88f66376c9de1733ab53c64e81ce5f4cf43f00de6f8a4c6607f3d48beb5ce37817fcdb87f4649f12c4b96b381050bb3d51d8ae7c1abb3452d68467062e4082d0
7
- data.tar.gz: cf4917a58e56c6dc275d2a0e40072a0e65ca5022703c5e9acce40cfbd2a9e590113d3726473bd5de3f79678fc06d307306820f6062d1f6a0d03fbf531b51f63f
6
+ metadata.gz: 1c824698bddeb7dacdc7097ffa3b7b1954c3276468b5dd7f28c727c209af0746b222101615da362bf3e5fb251f636a7d411ba1755694f52325a425f7522bb4df
7
+ data.tar.gz: b38d3672dadf0f25ffae767e5e47ca025fa750b0f9820208216deaea5c9ea7d135696f3043ed384fbe52ae3903c932a60cc55aec4fc96e21b55926629de14a6d
@@ -1,6 +1,6 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem 'rubypitaya', '1.4.1'
3
+ gem 'rubypitaya', '1.7.0'
4
4
 
5
5
  group :development do
6
6
  gem 'pry', '0.12.2'
@@ -62,7 +62,7 @@ GEM
62
62
  diff-lcs (>= 1.2.0, < 2.0)
63
63
  rspec-support (~> 3.8.0)
64
64
  rspec-support (3.8.3)
65
- rubypitaya (1.4.1)
65
+ rubypitaya (1.7.0)
66
66
  activerecord (= 6.0.2)
67
67
  etcdv3 (= 0.10.2)
68
68
  eventmachine (= 1.2.7)
@@ -85,7 +85,7 @@ DEPENDENCIES
85
85
  pry (= 0.12.2)
86
86
  rake (= 10.0)
87
87
  rspec (= 3.8.0)
88
- rubypitaya (= 1.4.1)
88
+ rubypitaya (= 1.7.0)
89
89
 
90
90
  BUNDLED WITH
91
91
  1.17.2
@@ -44,7 +44,15 @@ generate-gemfilelock:
44
44
 
45
45
  ## Build image to production environment
46
46
  prod-build-image:
47
- @docker build . -f docker/prod/Dockerfile -t rubypitaya-prod:latest
47
+ @docker build . -f docker/prod/Dockerfile -t [registry-address]:$(IMAGE_TAG)
48
+
49
+ ## Push prod image to gitlab
50
+ prod-push-image:
51
+ @docker push [registry-address]:$(IMAGE_TAG)
52
+
53
+ ## Deploy prod image to kubernetes cluster
54
+ prod-deploy-image:
55
+ kubectl -n $(PROD_NAMESPACE) set image deployment rubypitaya rubypitaya=[registry-address]:$(IMAGE_TAG)
48
56
 
49
57
  .DEFAULT_GOAL := show-help
50
58
 
@@ -1,11 +1,13 @@
1
- class HelloWorldHandler < RubyPitaya::HandlerBase
1
+ module MyApp
2
+ class HelloWorldHandler < RubyPitaya::HandlerBase
2
3
 
3
- non_authenticated_actions :sayHello
4
+ non_authenticated_actions :sayHello
4
5
 
5
- def sayHello
6
- response = {
7
- code: 'RP-200',
8
- msg: 'Hello!'
9
- }
6
+ def sayHello
7
+ response = {
8
+ code: 'RP-200',
9
+ msg: 'Hello!'
10
+ }
11
+ end
10
12
  end
11
- end
13
+ end
@@ -0,0 +1,11 @@
1
+ class Routes < RubyPitaya::RoutesBase
2
+
3
+ # class: RoutesBase
4
+ # methods:
5
+ # - match('new_handler_name', to: 'ClassHandler')
6
+ # - Defines a new name to handler
7
+
8
+ def setup
9
+ # match('helloHandler', to: 'MyApp::HelloWorldHandler')
10
+ end
11
+ end
@@ -12,7 +12,7 @@ services:
12
12
  - '2380:2380'
13
13
 
14
14
  redis:
15
- image: 'redis:3.2.5-alpine'
15
+ image: 'redis:6.0.5-alpine'
16
16
  ports:
17
17
  - '9001:6379'
18
18
 
@@ -16,4 +16,4 @@ ENV LC_ALL=C.UTF-8
16
16
 
17
17
  ENTRYPOINT ["./docker/entrypoint.sh"]
18
18
 
19
- CMD ["bundle", "exec", "rubypitaya"]
19
+ CMD ["bundle", "exec", "rubypitaya", "run"]
@@ -29,4 +29,4 @@ ENV LC_ALL=C.UTF-8
29
29
 
30
30
  ENTRYPOINT ["./docker/entrypoint.sh"]
31
31
 
32
- CMD ["bundle", "exec", "rubypitaya"]
32
+ CMD ["bundle", "exec", "rubypitaya", "run"]
@@ -0,0 +1,60 @@
1
+ Kubernetes Configuration
2
+ ========================
3
+
4
+ Set namespace
5
+ -------------
6
+
7
+ Open files "deployment-*.yaml" and set the correct namespace on links
8
+
9
+
10
+ Apply sequence
11
+ --------------
12
+
13
+ Run the following command on the listed files.
14
+ But remember to put your namespace and your KUBECONFIG env var if you need.
15
+
16
+ ```sh
17
+ $ kubectl apply -f [file-path]
18
+ ```
19
+
20
+ persistent-volume.yaml
21
+
22
+ statefulset-etcd.yaml
23
+ statefulset-nats.yaml
24
+ statefulset-postgres.yaml
25
+ statefulset-redis.yaml
26
+
27
+ service-etcd.yaml
28
+ service-nats.yaml
29
+ service-postgres.yaml
30
+ service-redis.yaml
31
+
32
+ deployment-connector.yaml
33
+ service-connector.yaml
34
+
35
+
36
+ Create gitlab-registry secret
37
+ -----------------------------
38
+
39
+ Run the following command.
40
+ But remember to put your namespace and your KUBECONFIG env var if you need.
41
+
42
+ ```sh
43
+ $ kubectl create secret docker-registry gitlab-registry --docker-server=[registry-server] --docker-username=[username] --docker-password=[password]
44
+ ```
45
+
46
+ If you use a different registry name instead of "gitlab-registry" change the deployment-rubypitaya.yaml imagePullSecrets.name
47
+
48
+
49
+ Apply sequence
50
+ --------------
51
+
52
+ Run the following command on the listed files.
53
+ But remember to put your namespace and your KUBECONFIG env var if you need.
54
+
55
+ ```sh
56
+ $ kubectl apply -f [file-path]
57
+ ```
58
+
59
+ deployment-rubypitaya.yaml
60
+ service-rubypitaya.yaml
@@ -0,0 +1,35 @@
1
+ apiVersion: apps/v1
2
+ kind: Deployment
3
+ metadata:
4
+ name: connector
5
+ labels:
6
+ app: connector
7
+ spec:
8
+ replicas: 1
9
+ selector:
10
+ matchLabels:
11
+ app: connector
12
+ template:
13
+ metadata:
14
+ labels:
15
+ app: connector
16
+ spec:
17
+ containers:
18
+ - name: connector
19
+ image: registry.gitlab.com/lucianopc/pitaya-connector:0.2.0
20
+ ports:
21
+ - containerPort: 3250
22
+ name: connector
23
+ env:
24
+ - name: PITAYA_CLUSTER_RPC_SERVER_NATS_CONNECT
25
+ value: "nats://nats.default.svc.cluster.local:4222"
26
+ - name: PITAYA_CLUSTER_RPC_CLIENT_NATS_CONNECT
27
+ value: "nats://nats.default.svc.cluster.local:4222"
28
+ - name: PITAYA_CLUSTER_RPC_CLIENT_NATS_REQUESTTIMEOUT
29
+ value: "10s"
30
+ - name: PITAYA_CLUSTER_SD_ETCD_ENDPOINTS
31
+ value: "etcd.default.svc.cluster.local:2379"
32
+ - name: PITAYA_CLUSTER_SD_ETCD_PREFIX
33
+ value: "rubypitaya/"
34
+ - name: SERVER_ROUTES
35
+ value: "rubypitaya"
@@ -0,0 +1,48 @@
1
+ apiVersion: apps/v1
2
+ kind: Deployment
3
+ metadata:
4
+ name: rubypitaya
5
+ labels:
6
+ app: rubypitaya
7
+ spec:
8
+ replicas: 1
9
+ selector:
10
+ matchLabels:
11
+ app: rubypitaya
12
+ template:
13
+ metadata:
14
+ labels:
15
+ app: rubypitaya
16
+ spec:
17
+ containers:
18
+ - name: rubypitaya
19
+ image: git.topfreegames.com:4567/prestes/tech-prototype/rubypitaya:latest
20
+ command: ["bundle", "exec", "rubypitaya", "run"]
21
+ ports:
22
+ - containerPort: 4567
23
+ name: rubypitaya
24
+ env:
25
+ - name: SERVER_NAME
26
+ value: "rubypitaya"
27
+ - name: RUBYPITAYA_ENV
28
+ value: "production"
29
+ - name: NATS_URL
30
+ value: "nats://nats.default.svc.cluster.local:4222"
31
+ - name: ETCD_URL
32
+ value: "http://etcd.default.svc.cluster.local:2379"
33
+ - name: ETCD_PREFIX
34
+ value: "rubypitaya/"
35
+ - name: ETCD_LEASE_SECONDS
36
+ value: "60"
37
+ - name: REDIS_URL
38
+ value: "redis://redis.default.svc.cluster.local:6379"
39
+ - name: DATABASE_HOST
40
+ value: "postgres.default.svc.cluster.local"
41
+ - name: DATABASE_USER
42
+ value: "postgres"
43
+ - name: DATABASE_PASSWORD
44
+ value: ""
45
+ - name: DATABASE_NAME
46
+ value: "ruby_pitaya"
47
+ imagePullSecrets:
48
+ - name: gitlab-registry
@@ -0,0 +1,11 @@
1
+ apiVersion: v1
2
+ kind: PersistentVolumeClaim
3
+ metadata:
4
+ name: postgres-pvc
5
+ spec:
6
+ accessModes:
7
+ - ReadWriteOnce
8
+ resources:
9
+ requests:
10
+ storage: 5Gi
11
+ storageClassName: standard
@@ -0,0 +1,12 @@
1
+ apiVersion: v1
2
+ kind: Service
3
+ metadata:
4
+ name: connector
5
+ spec:
6
+ selector:
7
+ app: connector
8
+ ports:
9
+ - protocol: TCP
10
+ port: 3250
11
+ targetPort: 3250
12
+ type: LoadBalancer
@@ -0,0 +1,17 @@
1
+ apiVersion: v1
2
+ kind: Service
3
+ metadata:
4
+ name: etcd
5
+ spec:
6
+ selector:
7
+ app: etcd
8
+ ports:
9
+ - protocol: TCP
10
+ port: 2379
11
+ targetPort: 2379
12
+ name: etcd-2379
13
+ - protocol: TCP
14
+ port: 2380
15
+ targetPort: 2380
16
+ name: etcd-2380
17
+ type: LoadBalancer
@@ -0,0 +1,12 @@
1
+ apiVersion: v1
2
+ kind: Service
3
+ metadata:
4
+ name: nats
5
+ spec:
6
+ selector:
7
+ app: nats
8
+ ports:
9
+ - protocol: TCP
10
+ port: 4222
11
+ targetPort: 4222
12
+ type: LoadBalancer
@@ -0,0 +1,12 @@
1
+ apiVersion: v1
2
+ kind: Service
3
+ metadata:
4
+ name: postgres
5
+ spec:
6
+ selector:
7
+ app: postgres
8
+ ports:
9
+ - protocol: TCP
10
+ port: 5432
11
+ targetPort: 5432
12
+ type: LoadBalancer
@@ -0,0 +1,13 @@
1
+ apiVersion: v1
2
+ kind: Service
3
+ metadata:
4
+ name: redis
5
+ spec:
6
+ selector:
7
+ app: redis
8
+ ports:
9
+ - protocol: TCP
10
+ port: 6379
11
+ targetPort: 6379
12
+ name: redis
13
+ type: LoadBalancer
@@ -0,0 +1,12 @@
1
+ apiVersion: v1
2
+ kind: Service
3
+ metadata:
4
+ name: rubypitaya
5
+ spec:
6
+ selector:
7
+ app: rubypitaya
8
+ ports:
9
+ - protocol: TCP
10
+ port: 80
11
+ targetPort: 4567
12
+ type: LoadBalancer
@@ -0,0 +1,25 @@
1
+ apiVersion: apps/v1
2
+ kind: StatefulSet
3
+ metadata:
4
+ name: etcd
5
+ labels:
6
+ app: etcd
7
+ spec:
8
+ serviceName: "etcd"
9
+ replicas: 1
10
+ selector:
11
+ matchLabels:
12
+ app: etcd
13
+ template:
14
+ metadata:
15
+ labels:
16
+ app: etcd
17
+ spec:
18
+ containers:
19
+ - name: etcd
20
+ image: appcelerator/etcd:3.0.15
21
+ ports:
22
+ - containerPort: 2379
23
+ name: etcd-2379
24
+ - containerPort: 2380
25
+ name: etcd-2380
@@ -0,0 +1,23 @@
1
+ apiVersion: apps/v1
2
+ kind: StatefulSet
3
+ metadata:
4
+ name: nats
5
+ labels:
6
+ app: nats
7
+ spec:
8
+ serviceName: "nats"
9
+ replicas: 1
10
+ selector:
11
+ matchLabels:
12
+ app: nats
13
+ template:
14
+ metadata:
15
+ labels:
16
+ app: nats
17
+ spec:
18
+ containers:
19
+ - name: nats
20
+ image: nats:2.1.4
21
+ ports:
22
+ - containerPort: 4222
23
+ name: nats
@@ -0,0 +1,35 @@
1
+ apiVersion: apps/v1
2
+ kind: StatefulSet
3
+ metadata:
4
+ name: postgres
5
+ labels:
6
+ app: postgres
7
+ spec:
8
+ serviceName: "postgres"
9
+ replicas: 1
10
+ selector:
11
+ matchLabels:
12
+ app: postgres
13
+ template:
14
+ metadata:
15
+ labels:
16
+ app: postgres
17
+ spec:
18
+ containers:
19
+ - name: postgres
20
+ image: postgres:9.6.17
21
+ env:
22
+ - name: POSTGRES_HOST_AUTH_METHOD
23
+ value: "trust"
24
+ - name: PGDATA
25
+ value: "/var/lib/postgresql/data/pgdata"
26
+ ports:
27
+ - containerPort: 5432
28
+ name: postgres
29
+ volumeMounts:
30
+ - name: postgres
31
+ mountPath: /var/lib/postgresql/data
32
+ volumes:
33
+ - name: postgres
34
+ persistentVolumeClaim:
35
+ claimName: postgres-pvc
@@ -0,0 +1,23 @@
1
+ apiVersion: apps/v1
2
+ kind: StatefulSet
3
+ metadata:
4
+ name: redis
5
+ labels:
6
+ app: redis
7
+ spec:
8
+ serviceName: "redis"
9
+ replicas: 1
10
+ selector:
11
+ matchLabels:
12
+ app: redis
13
+ template:
14
+ metadata:
15
+ labels:
16
+ app: redis
17
+ spec:
18
+ containers:
19
+ - name: redis
20
+ image: redis:6.0.5-alpine
21
+ ports:
22
+ - containerPort: 6379
23
+ name: redis
@@ -4,11 +4,26 @@ module RubyPitaya
4
4
 
5
5
  class HandlerRouter
6
6
 
7
- def initialize(handler_folder_path)
7
+ def initialize(handler_folder_path, routes_path)
8
+ import_routes_file(routes_path)
8
9
  import_handler_files(handler_folder_path)
10
+
11
+ import_routes_class
9
12
  import_handler_classes
10
13
  end
11
14
 
15
+ def import_routes_file(routes_path)
16
+ require routes_path
17
+ end
18
+
19
+ def import_routes_class
20
+ routes_classes = ObjectSpace.each_object(RoutesBase.singleton_class).select do |klass|
21
+ klass != RoutesBase
22
+ end
23
+
24
+ @routes = routes_classes.first.new
25
+ end
26
+
12
27
  def import_handler_files(handler_folder_path)
13
28
  Gem.find_files("#{handler_folder_path}/*.rb").each { |path| require path }
14
29
  end
@@ -22,6 +37,8 @@ module RubyPitaya
22
37
 
23
38
  @handler_name_map = @handlers.map do |handler|
24
39
  handler_name = handler.class.to_s
40
+ handler_name = @routes.get_new_handler_name(handler_name)
41
+ handler_name = handler_name.split('::').last
25
42
  handler_name = handler_name[0].downcase + handler_name[1..-1]
26
43
 
27
44
  [handler_name, handler]
@@ -7,6 +7,7 @@ require 'rubypitaya/core/config'
7
7
  require 'rubypitaya/core/session'
8
8
  require 'rubypitaya/core/postman'
9
9
  require 'rubypitaya/core/parameters'
10
+ require 'rubypitaya/core/routes_base'
10
11
  require 'rubypitaya/core/handler_router'
11
12
  require 'rubypitaya/core/etcd_connector'
12
13
  require 'rubypitaya/core/nats_connector'
@@ -69,7 +70,8 @@ module RubyPitaya
69
70
  @initializer_broadcast = InitializerBroadcast.new
70
71
  @initializer_broadcast.run(@initializer_content)
71
72
 
72
- @handler_router = HandlerRouter.new(Path::HANDLERS_FOLDER_PATH)
73
+ @handler_router = HandlerRouter.new(Path::HANDLERS_FOLDER_PATH,
74
+ Path::ROUTES_FILE_PATH)
73
75
 
74
76
  run_server
75
77
  end
@@ -9,5 +9,7 @@ module RubyPitaya
9
9
  HANDLERS_FOLDER_PATH = File.join(Dir.pwd, 'app/handlers/')
10
10
  APP_CONFIG_FOLDER_PATH = File.join(Dir.pwd, 'app/config/')
11
11
  MIGRATIONS_FOLDER_PATH = File.join(Dir.pwd, 'db/migrate/')
12
+
13
+ ROUTES_FILE_PATH = File.join(Dir.pwd, 'config/routes.rb')
12
14
  end
13
15
  end
@@ -0,0 +1,36 @@
1
+
2
+ module RubyPitaya
3
+
4
+ class RoutesBase
5
+
6
+ def initialize
7
+ @handler_name_map = {}
8
+
9
+ setup
10
+ end
11
+
12
+ def setup
13
+ end
14
+
15
+ def match(route_name, to:)
16
+ handler_name, action_name = to.split('#')
17
+ new_handler_name, new_action_name = route_name.split('.')
18
+
19
+ if new_action_name.nil?
20
+ set_handler_name(handler_name, new_handler_name)
21
+ end
22
+ end
23
+
24
+ def get_new_handler_name(handler_name)
25
+ return handler_name unless @handler_name_map.include?(handler_name)
26
+
27
+ @handler_name_map[handler_name]
28
+ end
29
+
30
+ private
31
+
32
+ def set_handler_name(handler_name, new_handler_name)
33
+ @handler_name_map[handler_name] = new_handler_name
34
+ end
35
+ end
36
+ end
@@ -1,3 +1,3 @@
1
1
  module RubyPitaya
2
- VERSION = "1.4.1"
2
+ VERSION = "1.7.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypitaya
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luciano Prestes Cavalcanti
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-20 00:00:00.000000000 Z
11
+ date: 2020-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg
@@ -201,8 +201,10 @@ files:
201
201
  - "./lib/rubypitaya/app-template/app/handlers/player_handler.rb"
202
202
  - "./lib/rubypitaya/app-template/app/models/player.rb"
203
203
  - "./lib/rubypitaya/app-template/app/models/user.rb"
204
+ - "./lib/rubypitaya/app-template/apptemplate-0.1.0.gem"
204
205
  - "./lib/rubypitaya/app-template/bin/console"
205
206
  - "./lib/rubypitaya/app-template/config/database.yml"
207
+ - "./lib/rubypitaya/app-template/config/routes.rb"
206
208
  - "./lib/rubypitaya/app-template/db/migrate/001_create_user_migration.rb"
207
209
  - "./lib/rubypitaya/app-template/db/migrate/002_create_player_migration.rb"
208
210
  - "./lib/rubypitaya/app-template/docker-compose.yml"
@@ -210,6 +212,20 @@ files:
210
212
  - "./lib/rubypitaya/app-template/docker/entrypoint.sh"
211
213
  - "./lib/rubypitaya/app-template/docker/prod/Dockerfile"
212
214
  - "./lib/rubypitaya/app-template/docker/prod/Makefile"
215
+ - "./lib/rubypitaya/app-template/kubernetes/README.md"
216
+ - "./lib/rubypitaya/app-template/kubernetes/deployment-connector.yaml"
217
+ - "./lib/rubypitaya/app-template/kubernetes/deployment-rubypitaya.yaml"
218
+ - "./lib/rubypitaya/app-template/kubernetes/persistent-volume.yaml"
219
+ - "./lib/rubypitaya/app-template/kubernetes/service-connector.yaml"
220
+ - "./lib/rubypitaya/app-template/kubernetes/service-etcd.yaml"
221
+ - "./lib/rubypitaya/app-template/kubernetes/service-nats.yaml"
222
+ - "./lib/rubypitaya/app-template/kubernetes/service-postgres.yaml"
223
+ - "./lib/rubypitaya/app-template/kubernetes/service-redis.yaml"
224
+ - "./lib/rubypitaya/app-template/kubernetes/service-rubypitaya.yaml"
225
+ - "./lib/rubypitaya/app-template/kubernetes/statefulset-etcd.yaml"
226
+ - "./lib/rubypitaya/app-template/kubernetes/statefulset-nats.yaml"
227
+ - "./lib/rubypitaya/app-template/kubernetes/statefulset-postgres.yaml"
228
+ - "./lib/rubypitaya/app-template/kubernetes/statefulset-redis.yaml"
213
229
  - "./lib/rubypitaya/core/application_files_importer.rb"
214
230
  - "./lib/rubypitaya/core/config.rb"
215
231
  - "./lib/rubypitaya/core/database_config.rb"
@@ -227,6 +243,7 @@ files:
227
243
  - "./lib/rubypitaya/core/path.rb"
228
244
  - "./lib/rubypitaya/core/postman.rb"
229
245
  - "./lib/rubypitaya/core/redis_connector.rb"
246
+ - "./lib/rubypitaya/core/routes_base.rb"
230
247
  - "./lib/rubypitaya/core/session.rb"
231
248
  - "./lib/rubypitaya/version.rb"
232
249
  - bin/rubypitaya