UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • big-bang/product/packages/gitlab-runner
  • trkdashin/gitlab-runner
  • 90-cos/iac/gitlab-runner-upstream
  • seagren.tim/gitlab-runner
4 results
Show changes
Commits on Source (4)
......@@ -2,6 +2,10 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.65.0-bb.2] - 2024-06-21
### Fixed
- Removed duplicate istio.hardened entry in chart/values.yaml
## [0.65.0-bb.1] - 2024-06-20
### Fixed
- Updated authorizationPolicy to properly reflect matchLabel selector and port for metrics
......
# gitlab-runner
![Version: 0.65.0-bb.1](https://img.shields.io/badge/Version-0.65.0--bb.1-informational?style=flat-square) ![AppVersion: 17.0.0](https://img.shields.io/badge/AppVersion-17.0.0-informational?style=flat-square)
![Version: 0.65.0-bb.2](https://img.shields.io/badge/Version-0.65.0--bb.2-informational?style=flat-square) ![AppVersion: 17.0.0](https://img.shields.io/badge/AppVersion-17.0.0-informational?style=flat-square)
GitLab Runner
......@@ -11,7 +11,6 @@ GitLab Runner
* <https://docs.gitlab.com/runner/>
## Learn More
* [Application Overview](docs/overview.md)
* [Other Documentation](docs/)
......@@ -23,13 +22,12 @@ GitLab Runner
Install Helm
<https://helm.sh/docs/intro/install/>
https://helm.sh/docs/intro/install/
## Deployment
* Clone down the repository
* cd into directory
```bash
helm install gitlab-runner chart/
```
......@@ -111,11 +109,10 @@ helm install gitlab-runner chart/
| volumes | list | `[]` | |
| extraObjects | list | `[]` | |
| istio.enabled | bool | `false` | |
| istio.injection | string | `"disabled"` | |
| istio.hardened.enabled | bool | `false` | |
| istio.hardened.outboundTrafficPolicyMode | string | `"REGISTRY_ONLY"` | |
| istio.hardened.customServiceEntries | list | `[]` | |
| istio.injection | string | `"disabled"` | |
| istio.hardened.enabled | bool | `false` | |
| istio.hardened.customAuthorizationPolicies | list | `[]` | |
| istio.hardened.gitlab.enabled | bool | `true` | |
| istio.hardened.gitlab.namespaces[0] | string | `"gitlab"` | |
......
apiVersion: v2
name: gitlab-runner
version: 0.65.0-bb.1
version: 0.65.0-bb.2
appVersion: 17.0.0
description: GitLab Runner
keywords:
......
......@@ -810,6 +810,7 @@ extraObjects: []
istio:
# Toggle istio integration
enabled: false
injection: disabled
hardened:
enabled: false
outboundTrafficPolicyMode: "REGISTRY_ONLY"
......@@ -827,9 +828,6 @@ istio:
# protocol: TLS
# name: https
# resolution: DNS
injection: disabled
hardened:
enabled: false
customAuthorizationPolicies: []
# - name: "allow-nothing"
# enabled: true
......
......@@ -2,7 +2,6 @@
"baseBranches": ["main"],
"configWarningReuseIssue": false,
"dependencyDashboard": "true",
"dependencyDashboardHeader": "- [ ] Sync upstream helm chart version with updated dependencies.",
"dependencyDashboardTitle": "Renovate: Upgrade Gitlab Runner Package Dependencies",
"draftPR": true,
"enabledManagers": ["regex", "helmv3"],
......