You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .gitlab/merge_request_templates/Revert To Resolve Incident.md
+1
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@
12
12
13
13
-[ ] Create an issue to reinstate the merge request and assign it to the author of the reverted merge request.
14
14
-[ ] If the revert is to resolve a [broken 'master' incident](https://about.gitlab.com/handbook/engineering/workflow/#broken-master), please read through the [Responsibilities of the Broken `master` resolution DRI](https://about.gitlab.com/handbook/engineering/workflow/#responsibilities-of-the-resolution-dri).
15
+
-[ ] If the revert involves a database migration, please read through [Deleting existing migrations](https://docs.gitlab.com/ee/development/database/deleting_migrations.html).
15
16
-[ ] Add the appropriate labels **before** the MR is created. We can skip CI/CD jobs only if the labels are added **before** the CI/CD pipeline is created.
= s_('Notify|Errors found on %{singular_or_plural_line}: %{error_lines}. Please check that these lines have the following fields: %{required_headers}.') % { singular_or_plural_line: n_('line', 'lines', @results[:error_lines].size), required_headers: WorkItems::ImportCsvService.required_headers.join(', '),
14
+
error_lines: @results[:error_lines].join(', ') }
15
+
16
+
- if @results[:parse_error]
17
+
%p{ style: text_style }
18
+
= s_('Notify|Error parsing CSV file. Please make sure it has the correct format: a delimited text file that uses a comma to separate values.')
Errors found on line <%= 'number'.pluralize(@results[:error_lines].size) %>: <%= @results[:error_lines].join(', ') %>. Please check that these lines have the following fields: <%= WorkItems::ImportCsvService.required_headers.join(', ') %>.
7
+
<% end %>
8
+
9
+
<% if @results[:parse_error] %>
10
+
Error parsing CSV file. Please make sure it has the correct format: a delimited text file that uses a comma to separate values.
Copy file name to clipboardexpand all lines: doc/administration/monitoring/prometheus/gitlab_metrics.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -218,7 +218,7 @@ configuration option in `gitlab.yml`. These metrics are served from the
218
218
|`geo_lfs_objects_registry`| Gauge | 14.6 | Number of LFS objects in the registry |`url`|
219
219
|`geo_lfs_objects_verified`| Gauge | 14.6 | Number of LFS objects verified on secondary |`url`|
220
220
|`geo_lfs_objects_verification_failed`| Gauge | 14.6 | Number of LFS objects' verifications failed on secondary |`url`|
221
-
|`geo_lfs_objects_verification_total`| Gauge | 14.6 | Number of LFS objects' verifications tried on secondary |`url`|LFS objects failed to sync on secondary |`url`|
221
+
|`geo_lfs_objects_verification_total`| Gauge | 14.6 | Number of LFS objects' verifications tried on secondary |`url`|
222
222
|`geo_attachments`| Gauge | 10.2 | Total number of file attachments available on primary |`url`|
223
223
|`geo_attachments_synced`| Gauge | 10.2 | Number of attachments synced on secondary |`url`|
224
224
|`geo_attachments_failed`| Gauge | 10.2 | Number of attachments failed to sync on secondary |`url`|
Copy file name to clipboardexpand all lines: doc/user/clusters/agent/gitops.md
+4
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,10 @@ info: To determine the technical writer assigned to the Stage/Group associated w
12
12
> -[Changed](https://gitlab.com/gitlab-org/gitlab/-/issues/346585) to make the `id` attribute optional in GitLab 15.7.
13
13
> - Specifying a branch, tag, or commit reference to fetch the Kubernetes manifest files [introduced](https://gitlab.com/groups/gitlab-org/-/epics/4516) in GitLab 15.7.
14
14
15
+
NOTE:
16
+
From GitLab 15.10, you should use [Flux](gitops/flux.md) for GitOps. For more information, see
17
+
[this announcement blog post](https://about.gitlab.com/blog/2023/02/08/why-did-we-choose-to-integrate-fluxcd-with-gitlab/).
18
+
15
19
With GitOps, you can manage containerized clusters and applications from a Git repository that:
0 commit comments