├── .browserslistrc ├── .github └── workflows │ └── deploy.yaml ├── .gitignore ├── .pryrc ├── .psqlrc ├── Aptfile ├── Dockerfile ├── Dockerfile.prod ├── Gemfile ├── Gemfile.lock ├── Makefile ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── do-logo.png │ │ └── wagon-logo.png │ └── stylesheets │ │ └── application.css ├── channels │ ├── application_cable │ │ ├── channel.rb │ │ └── connection.rb │ └── messages_channel.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── logins_controller.rb │ └── messages_controller.rb ├── helpers │ ├── application_helper.rb │ ├── login_helper.rb │ └── messages_helper.rb ├── javascript │ ├── channels │ │ ├── consumer.js │ │ └── index.js │ ├── controllers │ │ ├── chat_controller.js │ │ └── index.js │ ├── packs │ │ └── application.js │ └── stylesheets │ │ ├── application.scss │ │ └── chat.scss ├── jobs │ ├── application_job.rb │ └── deliver_message_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── current.rb │ ├── message.rb │ └── preview.rb ├── services │ ├── message_broadcaster.rb │ ├── preview_broadcaster.rb │ └── preview_creator.rb └── views │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ ├── logins │ └── new.html.erb │ ├── messages │ ├── _message.html.erb │ └── index.html.erb │ └── previews │ └── _preview.html.erb ├── babel.config.js ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── webpack ├── webpack-dev-server └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── sidekiq_redis.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── sidekiq.yml ├── spring.rb ├── webpack │ ├── development.js │ ├── environment.js │ ├── production.js │ └── test.js └── webpacker.yml ├── db ├── migrate │ ├── 20191126104811_create_messages.rb │ └── 20191203142803_create_previews.rb ├── schema.rb └── seeds.rb ├── dip.yml ├── docker-compose.yml ├── docs ├── app.png ├── processes.png └── secrets.png ├── helm ├── Chart.lock ├── Chart.yaml ├── charts │ └── redis-10.2.1.tgz ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployments │ │ ├── rails.yaml │ │ └── sidekiq.yaml │ ├── environment │ │ └── common-env.yaml │ ├── ingress.yaml │ ├── jobs │ │ └── db-prepare.yaml │ ├── secrets │ │ ├── db-connection-secret.yaml │ │ └── master-key-secret.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── ssl │ │ ├── cert.yaml │ │ └── production-issuer.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── postcss.config.js ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── test ├── application_system_test_case.rb ├── channels │ ├── application_cable │ │ └── connection_test.rb │ └── messages_channel_test.rb ├── controllers │ ├── .keep │ ├── logins_controller_test.rb │ └── messages_controller_test.rb ├── fixtures │ ├── .keep │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── message_test.rb │ └── preview_test.rb ├── system │ └── .keep └── test_helper.rb ├── tmp └── .keep ├── vendor └── .keep └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pryrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/.pryrc -------------------------------------------------------------------------------- /.psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/.psqlrc -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- 1 | vim 2 | libidn11-dev 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/Dockerfile.prod -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/do-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/assets/images/do-logo.png -------------------------------------------------------------------------------- /app/assets/images/wagon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/assets/images/wagon-logo.png -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/channels/messages_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/channels/messages_channel.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/logins_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/controllers/logins_controller.rb -------------------------------------------------------------------------------- /app/controllers/messages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/controllers/messages_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/login_helper.rb: -------------------------------------------------------------------------------- 1 | module LoginHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/messages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/helpers/messages_helper.rb -------------------------------------------------------------------------------- /app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/javascript/channels/index.js -------------------------------------------------------------------------------- /app/javascript/controllers/chat_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/javascript/controllers/chat_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/javascript/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/javascript/stylesheets/application.scss -------------------------------------------------------------------------------- /app/javascript/stylesheets/chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/javascript/stylesheets/chat.scss -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/deliver_message_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/jobs/deliver_message_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/current.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/models/current.rb -------------------------------------------------------------------------------- /app/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/models/message.rb -------------------------------------------------------------------------------- /app/models/preview.rb: -------------------------------------------------------------------------------- 1 | class Preview < ApplicationRecord 2 | belongs_to :message 3 | end 4 | -------------------------------------------------------------------------------- /app/services/message_broadcaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/services/message_broadcaster.rb -------------------------------------------------------------------------------- /app/services/preview_broadcaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/services/preview_broadcaster.rb -------------------------------------------------------------------------------- /app/services/preview_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/services/preview_creator.rb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/logins/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/views/logins/new.html.erb -------------------------------------------------------------------------------- /app/views/messages/_message.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/views/messages/_message.html.erb -------------------------------------------------------------------------------- /app/views/messages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/views/messages/index.html.erb -------------------------------------------------------------------------------- /app/views/previews/_preview.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/app/views/previews/_preview.html.erb -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq_redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/initializers/sidekiq_redis.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/webpack/environment.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /db/migrate/20191126104811_create_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/db/migrate/20191126104811_create_messages.rb -------------------------------------------------------------------------------- /db/migrate/20191203142803_create_previews.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/db/migrate/20191203142803_create_previews.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /dip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/dip.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/docs/app.png -------------------------------------------------------------------------------- /docs/processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/docs/processes.png -------------------------------------------------------------------------------- /docs/secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/docs/secrets.png -------------------------------------------------------------------------------- /helm/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/Chart.lock -------------------------------------------------------------------------------- /helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/redis-10.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/charts/redis-10.2.1.tgz -------------------------------------------------------------------------------- /helm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/templates/deployments/rails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/deployments/rails.yaml -------------------------------------------------------------------------------- /helm/templates/deployments/sidekiq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/deployments/sidekiq.yaml -------------------------------------------------------------------------------- /helm/templates/environment/common-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/environment/common-env.yaml -------------------------------------------------------------------------------- /helm/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/templates/jobs/db-prepare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/jobs/db-prepare.yaml -------------------------------------------------------------------------------- /helm/templates/secrets/db-connection-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/secrets/db-connection-secret.yaml -------------------------------------------------------------------------------- /helm/templates/secrets/master-key-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/secrets/master-key-secret.yaml -------------------------------------------------------------------------------- /helm/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/service.yaml -------------------------------------------------------------------------------- /helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/templates/ssl/cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/ssl/cert.yaml -------------------------------------------------------------------------------- /helm/templates/ssl/production-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/ssl/production-issuer.yaml -------------------------------------------------------------------------------- /helm/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/helm/values.yaml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /test/channels/messages_channel_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/test/channels/messages_channel_test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/logins_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/test/controllers/logins_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/messages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/test/controllers/messages_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/message_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/test/models/message_test.rb -------------------------------------------------------------------------------- /test/models/preview_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/test/models/preview_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewagon/rails-k8s-demo/HEAD/yarn.lock --------------------------------------------------------------------------------