rails-gke 0.6.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d380aeddf9d5a5df6bc7d4511a06287e169c460e103e7730ed9b742861f5da3c
4
+ data.tar.gz: 0cc4f2887b12793a5bcf07b3be67c6d7e785861277dee176c5e9cddf4b1e2fa3
5
+ SHA512:
6
+ metadata.gz: bc851b5c103c378ced8eb1d2d271459ac9eac9991013bcd44fc9b053c0df6ee54aa924036b75d61b79e56ff0996b8902950e2654127a50abf3274c8c48cb7719
7
+ data.tar.gz: 5bd0171f60d4eafd266763a1a6c98f31c0e8d0bdbbe6e90db3e7db37ac6b72fbfe72991fd2176ee883ab61cf55b86e9bc8aa194494cfaad42099ea08c570773f
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ /app/
10
+ /lib/tasks/
11
+ # rspec failure tracking
12
+ .rspec_status
13
+ .envrc
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,191 @@
1
+ AllCops:
2
+ EnabledByDefault: true
3
+
4
+ Style/AndOr:
5
+ Enabled: false
6
+
7
+ Style/ClassAndModuleChildren:
8
+ Enabled: false
9
+
10
+ Style/AsciiComments:
11
+ Enabled: false
12
+
13
+ Style/SymbolArray:
14
+ Enabled: false
15
+
16
+ Style/WordArray:
17
+ Enabled: false
18
+
19
+ Style/MixinGrouping:
20
+ Enabled: false
21
+
22
+ Style/RescueStandardError:
23
+ Enabled: false
24
+
25
+ Style/MethodCallWithArgsParentheses:
26
+ Enabled: false
27
+
28
+ Style/DocumentationMethod:
29
+ Enabled: false
30
+
31
+ Style/CollectionMethods:
32
+ PreferredMethods:
33
+ detect: "detect"
34
+ find: "detect"
35
+ inject: "inject"
36
+ reduce: "inject"
37
+
38
+ Style/Documentation:
39
+ Enabled: false
40
+
41
+ Style/DoubleNegation:
42
+ Enabled: false
43
+
44
+ Lint/ConstantResolution:
45
+ Enabled: false
46
+
47
+ Layout/DotPosition:
48
+ EnforcedStyle: trailing
49
+
50
+
51
+ Layout/EmptyLineAfterGuardClause:
52
+ Enabled: false
53
+
54
+ Style/EmptyElse:
55
+ EnforcedStyle: empty
56
+
57
+ Layout/ExtraSpacing:
58
+ Exclude:
59
+ - "db/migrate/*.rb"
60
+ - "*.gemspec"
61
+
62
+ Style/FormatString:
63
+ EnforcedStyle: percent
64
+
65
+ Style/MissingElse:
66
+ Enabled: false
67
+
68
+ Style/StringHashKeys:
69
+ Exclude:
70
+ - "spec/queries/*.rb"
71
+ - "*.gemspec"
72
+
73
+ Style/GuardClause:
74
+ MinBodyLength: 5
75
+
76
+ Style/HashSyntax:
77
+ EnforcedStyle: ruby19
78
+ Exclude:
79
+ - "**/*.rake"
80
+ - "Rakefile"
81
+
82
+ Style/IfUnlessModifier:
83
+ Enabled: false
84
+
85
+ Style/PreferredHashMethods:
86
+ EnforcedStyle: short
87
+
88
+ Style/Lambda:
89
+ Enabled: false
90
+
91
+ Style/NumericLiterals:
92
+ MinDigits: 7
93
+
94
+ Style/PerlBackrefs:
95
+ AutoCorrect: false
96
+
97
+ Style/RedundantSelf:
98
+ Enabled: false
99
+
100
+ Style/FrozenStringLiteralComment:
101
+ Enabled: false
102
+
103
+ Style/RedundantReturn:
104
+ AllowMultipleReturnValues: true
105
+
106
+ Style/Semicolon:
107
+ Exclude:
108
+ - "spec/**/*"
109
+
110
+ Style/SignalException:
111
+ EnforcedStyle: only_raise
112
+
113
+ Style/MethodDefParentheses:
114
+ Enabled: false
115
+
116
+ Style/StringLiterals:
117
+ EnforcedStyle: double_quotes
118
+
119
+ Style/StringLiteralsInInterpolation:
120
+ Enabled: false
121
+
122
+ Style/SingleLineBlockParams:
123
+ Enabled: false
124
+
125
+ Lint/UnderscorePrefixedVariableName:
126
+ Enabled: false
127
+
128
+ Lint/UnusedMethodArgument:
129
+ Enabled: false
130
+
131
+
132
+ Metrics/AbcSize:
133
+ Enabled: false
134
+
135
+ Metrics/CyclomaticComplexity:
136
+ Max: 10
137
+
138
+ Metrics/PerceivedComplexity:
139
+ Enabled: false
140
+
141
+ Metrics/BlockLength:
142
+ Enabled: false
143
+
144
+ Layout/LineLength:
145
+ Enabled: false
146
+
147
+
148
+ Metrics/MethodLength:
149
+ Enabled: false
150
+
151
+ Metrics/ClassLength:
152
+ Enabled: false
153
+
154
+ Naming/HeredocDelimiterNaming:
155
+ Enabled: false
156
+
157
+ Naming/AccessorMethodName:
158
+ Enabled: false
159
+
160
+ Metrics/ModuleLength:
161
+ Enabled: false
162
+
163
+ Lint/UnusedBlockArgument:
164
+ Enabled: false
165
+
166
+ Lint/RescueException:
167
+ Enabled: false
168
+
169
+ Naming/RescuedExceptionsVariableName:
170
+ Enabled: false
171
+
172
+ Bundler/GemComment:
173
+ Enabled: false
174
+
175
+ Style/SafeNavigation:
176
+ Enabled: false
177
+
178
+ Lint/NumberConversion:
179
+ Enabled: false
180
+ Style/ConstantVisibility:
181
+ Enabled: false
182
+ Style/MutableConstant:
183
+ Enabled: false
184
+ Style/Copyright:
185
+ Enabled: false
186
+ Style/MultilineTernaryOperator:
187
+ Enabled: false
188
+ Layout/MultilineAssignmentLayout:
189
+ Enabled: false
190
+ Style/Send:
191
+ Enabled: false
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.7.2
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.7.2
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at fumitake.kawasaki@el-soul.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in rails-gke.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "rspec", "~> 3.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,34 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ rails-gke (0.6.5)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.4.4)
10
+ rake (12.3.3)
11
+ rspec (3.9.0)
12
+ rspec-core (~> 3.9.0)
13
+ rspec-expectations (~> 3.9.0)
14
+ rspec-mocks (~> 3.9.0)
15
+ rspec-core (3.9.2)
16
+ rspec-support (~> 3.9.3)
17
+ rspec-expectations (3.9.2)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.9.0)
20
+ rspec-mocks (3.9.1)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.9.0)
23
+ rspec-support (3.9.3)
24
+
25
+ PLATFORMS
26
+ ruby
27
+
28
+ DEPENDENCIES
29
+ rails-gke!
30
+ rake (~> 12.0)
31
+ rspec (~> 3.0)
32
+
33
+ BUNDLED WITH
34
+ 2.1.4
data/LICENSE.txt ADDED
@@ -0,0 +1,67 @@
1
+ Apache License
2
+
3
+ Version 2.0, January 2004
4
+
5
+ http://www.apache.org/licenses/
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
16
+
17
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
18
+
19
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
20
+
21
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
22
+
23
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
24
+
25
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
26
+
27
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
28
+
29
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
30
+
31
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
32
+
33
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
34
+
35
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
36
+
37
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
38
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
39
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
40
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
41
+
42
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
43
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
44
+
45
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
46
+
47
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
48
+
49
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
50
+
51
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
52
+
53
+ END OF TERMS AND CONDITIONS
54
+
55
+ Copyright 2020 ELSOUL, INC
56
+
57
+ Licensed under the Apache License, Version 2.0 (the "License");
58
+ you may not use this file except in compliance with the License.
59
+ You may obtain a copy of the License at
60
+
61
+ http://www.apache.org/licenses/LICENSE-2.0
62
+
63
+ Unless required by applicable law or agreed to in writing, software
64
+ distributed under the License is distributed on an "AS IS" BASIS,
65
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
66
+ See the License for the specific language governing permissions and
67
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,256 @@
1
+ # Ruby on Rails GKE Deploy Kit
2
+
3
+ Ruby on Rails GKE Deploy Kit. You can deploy your Ruby on Rails on Google Kubernate Engine with ingress https.
4
+
5
+ <p align="center">
6
+
7
+ <a aria-label="Ruby logo" href="https://el-soul.com">
8
+ <img src="https://badgen.net/badge/icon/Made%20by%20ELSOUL?icon=ruby&label&color=black&labelColor=black">
9
+ </a>
10
+ <br/>
11
+
12
+ <a aria-label="Ruby Gem version" href="https://rubygems.org/gems/rails-gke">
13
+ <img alt="" src="https://badgen.net/rubygems/v/rails-gke/latest">
14
+ </a>
15
+ <a aria-label="Downloads Number" href="https://rubygems.org/gems/rails-gke">
16
+ <img alt="" src="https://badgen.net/rubygems/dt/rails-gke">
17
+ </a>
18
+ <a aria-label="License" href="https://github.com/elsoul/rails-gke/blob/master/LICENSE">
19
+ <img alt="" src="https://badgen.net/badge/license/Apache/blue">
20
+ </a>
21
+ </p>
22
+
23
+ ## Dependency
24
+
25
+ 1. Google SDK
26
+ [https://cloud.google.com/sdk/docs](https://cloud.google.com/sdk/docs)
27
+ 2. Docker
28
+ [https://www.docker.com/](https://www.docker.com/)
29
+
30
+ ## Installation
31
+
32
+ Add this line to your application's Gemfile:
33
+
34
+ ```ruby
35
+ gem "rails-gke"
36
+ ```
37
+
38
+ And then execute:
39
+
40
+ $ bundle install
41
+
42
+ Or install it yourself as:
43
+
44
+ $ gem install rails-gke
45
+
46
+ ## Configuration
47
+
48
+ Initialize Config
49
+
50
+ $ rails_gke_init
51
+
52
+ This command will create `config/initializers/rails-gke.rb`
53
+
54
+ Sample Config
55
+
56
+ ```ruby
57
+ # It's better to use ENV to define values.
58
+ Rails::Gke.configure do |config|
59
+ config.project_id = "elsoul"
60
+ config.app = "elsoul-api"
61
+ config.network = "elsoul-blog"
62
+ config.machine_type = "custom-1-6656"
63
+ config.zone = "asia-northeast1"
64
+ config.domain = "rails-gke.el-soul.com"
65
+ config.google_application_credentials = "config/credentials.json"
66
+ end
67
+ ```
68
+
69
+ Check if configuration set in console
70
+
71
+ ```ruby
72
+ rails c
73
+ irb(main):002:0> Rails::Gke.configuration.nil?
74
+ => false
75
+ ```
76
+
77
+ Set your environment as needed above.
78
+
79
+ Then create `yml` files in rails console
80
+
81
+ ```ruby
82
+ Rails::Gke::Initialize.create_yml
83
+ ```
84
+
85
+ In console
86
+
87
+ ```ruby
88
+ rails c
89
+ irb(main):001:0> Rails::Gke::Initialize.create_yml
90
+ => true
91
+ ```
92
+
93
+ Now you can see 4 GKE yml files;
94
+
95
+ `deployment.yml`
96
+ `service.yml`
97
+ `secret.yml`
98
+ `ingress.yml`
99
+
100
+ In `deployment.yml` you need to change your container version when you update your container.
101
+
102
+ `asia.gcr.io/project_id/app_name:0.0.1`
103
+
104
+ Also you need to set ENV.
105
+
106
+ And you can edit `secret.yml` as you needed.
107
+
108
+ Then create `rails task file`
109
+
110
+ ```ruby
111
+ Rails::Gke::Initialize.create_task
112
+ ```
113
+
114
+ In console
115
+
116
+ ```ruby
117
+ rails c
118
+ irb(main):001:0> Rails::Gke::Initialize.create_task
119
+ => true
120
+ ```
121
+
122
+ This will create `lib/tasks/gke.rake` file.
123
+
124
+ Now you are ready to use all the command.
125
+
126
+ ## Usage
127
+
128
+ Set GCP Project
129
+
130
+ $ gcloud auth login
131
+ $ gcloud config set project `your-project-id`
132
+
133
+ Please check `lib/tasks/gke.rake` file.
134
+ You can run gke command like this;
135
+
136
+ ```ruby
137
+ rails gke:TASK_NAME
138
+ ```
139
+
140
+ So let's deploy your rails application on Google Kubernates Engine.
141
+
142
+ 1. Create VPC Network
143
+
144
+ ```ruby
145
+ rails gke:create_network
146
+ ```
147
+
148
+ 2. Create Kubernate Cluster
149
+
150
+ ```ruby
151
+ rails gke:create_cluster
152
+ ```
153
+
154
+ 3. Create Global IP
155
+
156
+ ```ruby
157
+ rails gke:create_ip
158
+ ```
159
+
160
+ 4. Create namespace
161
+
162
+ ```ruby
163
+ rails gke:create_namespace
164
+ ```
165
+
166
+ 5. Apply secret.yml
167
+
168
+ ```ruby
169
+ rails gke:apply_secret
170
+ ```
171
+
172
+
173
+ 6. Apply deployment.yml
174
+
175
+ ```ruby
176
+ rails gke:apply_deployment
177
+ ```
178
+
179
+ Check your GKE pods if its running well.
180
+
181
+ ```ruby
182
+ rails gke:get_pods
183
+ ```
184
+
185
+ Output
186
+
187
+ ```
188
+ NAME READY STATUS RESTARTS AGE
189
+ elsoul-api-deployment-5dfb777c67-456js 1/1 Running 0 20s
190
+ elsoul-api-deployment-5dfb777c67-g8kwp 1/1 Running 0 20s
191
+ elsoul-api-deployment-5dfb777c67-x857m 1/1 Running 0 20s
192
+ ```
193
+
194
+ If you can't see containers ready, you need to fix your container first.
195
+
196
+ 7. Apply service.yml
197
+
198
+ ```ruby
199
+ rails gke:apply_service
200
+ ```
201
+
202
+ Check your GKE svc if its running well.
203
+
204
+ ```ruby
205
+ rails gke:get_svc
206
+ ```
207
+
208
+ Output
209
+
210
+ ```
211
+ NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
212
+ elsoul-api-service LoadBalancer xx.xxx.x.xx xx.xx.xxx.xxx 80:32321/TCP 1h
213
+ ```
214
+
215
+ 8. Apply ingress.yml
216
+
217
+ ```ruby
218
+ rails gke:apply_ingress
219
+ ```
220
+
221
+ Check your GKE ingress if its running well.
222
+
223
+ ```ruby
224
+ rails gke:get_ingress
225
+ ```
226
+
227
+ This will take serveral mins.
228
+ You need to set the IP address to A record in your domain management console once Ingress got IP ADDRESS
229
+
230
+ ```
231
+ NAME HOSTS ADDRESS PORTS AGE
232
+ https-elsoul-api elsoul-api.el-soul.com xx.xx.xxx.xxx 80 5d16h
233
+ ```
234
+
235
+ 9. Create LoadBalancer Frontend HTTPS
236
+
237
+
238
+
239
+
240
+ ## Development
241
+
242
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
243
+
244
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org/gems/rails-gke).
245
+
246
+ ## Contributing
247
+
248
+ Bug reports and pull requests are welcome on GitHub at https://github.com/elsoul/rails-gke. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
249
+
250
+ ## License
251
+
252
+ The gem is available as open source under the terms of the [Apache-2.0 License](https://www.apache.org/licenses/LICENSE-2.0).
253
+
254
+ ## Code of Conduct
255
+
256
+ Everyone interacting in the HotelPrice project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/elsoul/rails-gke/blob/master/CODE_OF_CONDUCT.md).