This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
инструмент_gitlab [2026/03/19 20:44] val [Установка из пакета] |
инструмент_gitlab [2026/06/15 09:11] (current) val [Настройка отправки почты] |
||
|---|---|---|---|
| Line 151: | Line 151: | ||
| <code> | <code> | ||
| ### docker exec -it root_web_1 bash | ### docker exec -it root_web_1 bash | ||
| - | ### kubectl -n my-gitlab-ns exec -ti pods/gitlab-<TAB> -- bash | + | ### kubectl -n my-gitlab-ns exec -ti deployment/gitlab -- bash |
| # ###gitlab-ctl status | # ###gitlab-ctl status | ||
| Line 163: | Line 163: | ||
| real 2m34.726s | real 2m34.726s | ||
| ... | ... | ||
| + | </code> | ||
| + | |||
| + | ==== 500: We're sorry, something went wrong on our end ==== | ||
| + | <code> | ||
| + | # gitlab-rails console | ||
| + | |||
| + | irb(main):001> ApplicationSetting.delete_all | ||
| + | |||
| + | irb(main):001> ActiveRecord::Base.connection.execute("UPDATE application_settings SET runners_registration_token_encrypted = NULL, error_tracking_access_token_encrypted = NULL, encrypted_ci_jwt_signing_key = NULL") | ||
| + | |||
| + | irb(main):002> Project.update_all(runners_token: nil, runners_token_encrypted: nil) | ||
| + | irb(main):003> Group.update_all(runners_token: nil, runners_token_encrypted: nil) | ||
| + | |||
| + | irb(main):004> Ci::RunnerProject.delete_all | ||
| + | irb(main):005> Ci::Runner.delete_all | ||
| + | irb(main):006> Rails.cache.clear | ||
| </code> | </code> | ||
| ==== Настройка отправки почты ==== | ==== Настройка отправки почты ==== | ||
| Line 169: | Line 185: | ||
| <code> | <code> | ||
| root@gitlab:/# gitlab-rails console | root@gitlab:/# gitlab-rails console | ||
| - | irb(main):001> Notify.test_email('student@corp15.un', 'Message Subject', 'Message Body').deliver_now | + | irb(main):001> Notify.test_email('student@corpX.un', 'Message Subject', 'Message Body').deliver_now |
| </code> | </code> | ||
| ==== GitLab Docker Registry ==== | ==== GitLab Docker Registry ==== | ||
| Line 813: | Line 829: | ||
| # stage: scan | # stage: scan | ||
| # image: | # image: | ||
| - | # name: aquasec/trivy:latest | + | # name: ghcr.io/aquasecurity/trivy |
| # entrypoint: [""] | # entrypoint: [""] | ||
| # variables: | # variables: | ||
| Line 821: | Line 837: | ||
| # TRIVY_CACHE_DIR: ".trivycache/" | # TRIVY_CACHE_DIR: ".trivycache/" | ||
| # script: | # script: | ||
| - | # - trivy image --exit-code 1 --insecure $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA | + | # - trivy image --exit-code 1 --severity HIGH --insecure $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA |
| # cache: | # cache: | ||
| # paths: | # paths: | ||
| # - ".trivycache/" | # - ".trivycache/" | ||
| + | # except: | ||
| + | # - tags | ||
| + | # tags: | ||
| + | # - build | ||
| #Deploy: | #Deploy: | ||