- Login to AWS Cost Explorer and see last day’s cost and look for abnormalities. If some service is costing more than average.
- Nodegroup audits:
["7ce18bfd-4433-49b4-a8c5-622758773d43", 4], | |
["65aea96a-534f-4d16-be67-2903ceae7c5b", 4], | |
["799205be-4d0f-4b66-978e-18b50f1c1902", 4], | |
["9e9ae006-9e53-4db0-9355-313458aac99a", 4], | |
["f8929e2d-9875-41a8-b579-1a394b216cfe", 4], | |
["6a51ff88-58ca-4d69-ba75-cc20ef88fbe5", 4], | |
["356e5804-c1c1-4574-b4e5-9aa6d8bc72ba", 4], | |
["83af51f2-cc59-435c-8fbb-d2b6c76bc4df", 4], | |
["bf53e8e1-a107-4c68-82ca-8a9803e153c4", 4], | |
["442f2027-acc8-4d29-a640-359b5bdd81df", 4], |
Caused by:
PG::ConnectionBad: connection to server at "10.100.111.33", port 5432 failed: Connection refused (PG::ConnectionBad)
Is the server running on that host and accepting TCP/IP connections?
kubectl get pods --all-namespaces -o=jsonpath="{range .items[*]}{'\n'}{.metadata.namespace}:{.metadata.name}{'\n'}{'\t'}{range .spec.containers[*]}{.name}:{.image}{'\n'}{end}{end}"
We can grep for the private registry to filter all the images we are managing from our end, and migrate them easily to the new system.
web: bundle exec puma -C config/puma.rb
worker: bundle exec sidekiq -C config/sidekiq.yml
release: bundle exec rake db:migrate setup_sample_data
Please make sure you have a rake task available in the project called setup_sample_data
.
This rake task does not necessarily need to have any associated code in it. It can be a blank rake task, or you can choose to populate it with your own custom logic your app might require.
Organizations::NeetoAppsService.new(current_user).process["neeto_apps"]
as propsorganization_neeto_applications
table from client application and remove associated test cases and references throughout the applicationIn the following PR for neeto-insights-web
repository, note that the ruby version
has been set to 3.0.1 and the node.js version to 16
PR: https://github.com/bigbinary/neeto-insights-web/pull/332/files
Follow the above PR to change the ruby version and node.js version for a neeto application.
To update the ruby version and node.js version to different versions, please refer https://github.com/bigbinary/docker-images repository to check the list of available images for a particular ruby version and node.js version and use the respective image.
FWIW: I'm not the author of the content presented here (which is an outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.
require: | |
- rubocop-rails | |
AllCops: | |
TargetRubyVersion: 2.7 | |
# RuboCop has a bunch of cops enabled by default. This setting tells RuboCop | |
# to ignore them, so only the ones explicitly set in this file are enabled. | |
DisabledByDefault: true | |
Exclude: | |
- "**/templates/**/*" |