Skip to content

Commit 940bda1

Browse files
authored
Merge pull request #362 from mbaldessari/expose-uuid
Expose UUID
2 parents 4f97430 + 39833a3 commit 940bda1

9 files changed

Lines changed: 14 additions & 7 deletions

File tree

.github/workflows/ansible-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
# Important: This sets up your GITHUB_WORKSPACE environment variable
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212

1313
- name: Lint Ansible Playbook
1414
uses: ansible/ansible-lint-action@v6

.github/workflows/ansible-unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# Checkout the code base #
3333
##########################
3434
- name: Checkout Code
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
# Full git history is needed to get a proper list of changed files within `super-linter`
3838
fetch-depth: 0

.github/workflows/chart-branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
clustergroup: ${{ steps.filter.outputs.clustergroup }}
3131
steps:
3232
- name: Checkout Code
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- uses: dorny/paths-filter@v2
3636
id: filter

.github/workflows/chart-split.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
contents: write
2020
steps:
2121
- name: Checkout Code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525
token: ${{ secrets.CHARTS_REPOS_TOKEN }}

.github/workflows/jsonschema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# Checkout the code base #
3333
##########################
3434
- name: Checkout Code
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
# Full git history is needed to get a proper list of changed files within `super-linter`
3838
fetch-depth: 0

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Checkout the code base #
3030
##########################
3131
- name: Checkout Code
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
with:
3434
# Full git history is needed to get a proper list of changed files within `super-linter`
3535
fetch-depth: 0

.github/workflows/superlinter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout Code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
# Full git history is needed to get a proper list of changed files within `super-linter`
1818
fetch-depth: 0

clustergroup/values.schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@
102102
"description": "Enable the experimental support for multi source"
103103
}
104104
}
105+
},
106+
"analyticsUUID": {
107+
"type": "string",
108+
"description": "UUID used to generate analytics"
105109
}
106110
}
107111
},

operator-install/templates/pattern.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ spec:
1313
operatorSource: {{ default "redhat-operators" .Values.main.gitops.operatorSource }}
1414
multiSourceConfig:
1515
enabled: {{ .Values.main.multiSourceConfig.enabled }}
16+
{{- if .Values.main.analyticsUUID }}
17+
analyticsUUID: {{ .Values.main.analyticsUUID }}
18+
{{- end }} {{/* if .Values.main.analyticsUUID */}}
1619
{{- if .Values.main.extraParameters }}
1720
extraParameters:
1821
{{- range .Values.main.extraParameters }}

0 commit comments

Comments
 (0)