Skip to content

Commit 2337a38

Browse files
author
Liudmila Molkova
committed
Merge branch 'main' into gen-ai-align-naming
2 parents 3d56590 + 2353261 commit 2337a38

File tree

28 files changed

+616
-68
lines changed

28 files changed

+616
-68
lines changed

.chloggen/hpa-resource.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Use this changelog template to create an entry for release notes.
2+
#
3+
# If your change doesn't affect end users you should instead start
4+
# your pull request title with [chore] or use the "Skip Changelog" label.
5+
6+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
7+
change_type: enhancement
8+
9+
# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db)
10+
component: k8s
11+
12+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
13+
note: Add new resource attributes for `k8s.hpa` to capture the `scaleTargetRef` fields
14+
#
15+
16+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
17+
# The values here must be integers.
18+
issues: [2008]
19+
20+
# (Optional) One or more lines of additional information to render under the primary note.
21+
# These lines will be padded with 2 spaces and then inserted directly into the document.
22+
# Use pipe (|) for multiline entries.
23+
subtext: |
24+
Adds below attributes to the `k8s.hpa` resource:
25+
- `k8s.hpa.scaletargetref.kind`
26+
- `k8s.hpa.scaletargetref.name`
27+
- `k8s.hpa.scaletargetref.api_version`

.chloggen/k8s-naming.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
change_type: enhancement
2+
3+
component: k8s
4+
5+
note: Explains the rationale behind the Kubernetes resource naming convention.
6+
7+
issues: [2245]

.chloggen/rrschulze_issue1687.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Use this changelog template to create an entry for release notes.
2+
#
3+
# If your change doesn't affect end users you should instead start
4+
# your pull request title with [chore] or use the "Skip Changelog" label.
5+
6+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
7+
change_type: new_component
8+
9+
# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db)
10+
component: mainframe, zos
11+
12+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
13+
note: Add initial semantic conventions for mainframes
14+
15+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
16+
# The values here must be integers.
17+
issues: [1687]
18+
19+
# (Optional) One or more lines of additional information to render under the primary note.
20+
# These lines will be padded with 2 spaces and then inserted directly into the document.
21+
# Use pipe (|) for multiline entries.
22+
subtext:
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Use this changelog template to create an entry for release notes.
2+
#
3+
# If your change doesn't affect end users you should instead start
4+
# your pull request title with [chore] or use the "Skip Changelog" label.
5+
6+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
7+
change_type: deprecation
8+
9+
# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db)
10+
component: os
11+
12+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
13+
note: "Deprecate os.type='z_os' and replace with os.type='zos'"
14+
15+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
16+
# The values here must be integers.
17+
issues: [1687]
18+
19+
# (Optional) One or more lines of additional information to render under the primary note.
20+
# These lines will be padded with 2 spaces and then inserted directly into the document.
21+
# Use pipe (|) for multiline entries.
22+
subtext:

.github/CODEOWNERS

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,11 @@
7777
/model/mobile/ @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-client-approvers
7878

7979
# K8s semantic conventions
80-
/docs/resource/k8s.md @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-k8s-approvers
81-
/model/k8s/ @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-k8s-approvers
82-
/docs/non-normative/k8s-attributes.md @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-k8s-approvers
83-
/docs/non-normative/k8s-migration.md @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-k8s-approvers
80+
/docs/resource/k8s.md @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-k8s-approvers
81+
/model/k8s/ @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-k8s-approvers
82+
/docs/non-normative/k8s-attributes.md @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-k8s-approvers
83+
/docs/non-normative/k8s-migration.md @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-k8s-approvers
84+
/docs/non-normative/naming-known-exceptions.md @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-k8s-approvers
8485

8586
# Container semantic conventions
8687
/docs/resource/container.md @open-telemetry/specs-semconv-approvers @open-telemetry/semconv-container-approvers
@@ -145,3 +146,9 @@
145146
/templates/ @open-telemetry/specs-semconv-approvers @open-telemetry/weaver-approvers
146147
/internal/ @open-telemetry/specs-semconv-approvers @open-telemetry/weaver-approvers
147148
/docs/non-normative/code-generation.md @open-telemetry/specs-semconv-approvers @open-telemetry/weaver-approvers
149+
150+
# Mainframe
151+
/docs/mainframe @open-telemetry/specs-semconv-approvers @open-telemetry/sig-mainframe-approvers
152+
/model/mainframe @open-telemetry/specs-semconv-approvers @open-telemetry/sig-mainframe-approvers
153+
/docs/zos @open-telemetry/specs-semconv-approvers @open-telemetry/sig-mainframe-approvers
154+
/model/zos @open-telemetry/specs-semconv-approvers @open-telemetry/sig-mainframe-approvers

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ body:
6767
- area:k8s
6868
- area:linux
6969
- area:log
70+
- area:mainframe
7071
- area:messaging
7172
- area:network
7273
- area:nodejs
@@ -96,6 +97,7 @@ body:
9697
- area:v8js
9798
- area:vcs
9899
- area:webengine
100+
- area:zos
99101
# End semconv area list
100102
- type: textarea
101103
attributes:

.github/ISSUE_TEMPLATE/change_proposal.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ body:
5959
- area:k8s
6060
- area:linux
6161
- area:log
62+
- area:mainframe
6263
- area:messaging
6364
- area:network
6465
- area:nodejs
@@ -88,6 +89,7 @@ body:
8889
- area:v8js
8990
- area:vcs
9091
- area:webengine
92+
- area:zos
9193
# End semconv area list
9294
- type: textarea
9395
attributes:

.github/ISSUE_TEMPLATE/new-conventions.yaml

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,93 @@ body:
1414
pull requests, issues, and questions in this area.
1515
1616
Creating a new issue here is a great first step to find others interested in collaborating.
17+
- type: dropdown
18+
id: area
19+
attributes:
20+
label: Area(s)
21+
description: Which area(s) does your new conventions concern? If none fits, please select `area:new`
22+
multiple: true
23+
options:
24+
- area:new
25+
# NOTE: The list below is autogenerated using `make generate-gh-issue-templates`
26+
# DO NOT manually edit it.
27+
# Start semconv area list
28+
- area:android
29+
- area:app
30+
- area:artifact
31+
- area:aspnetcore
32+
- area:aws
33+
- area:azure
34+
- area:browser
35+
- area:cassandra
36+
- area:cicd
37+
- area:client
38+
- area:cloud
39+
- area:cloudevents
40+
- area:cloudfoundry
41+
- area:code
42+
- area:container
43+
- area:cpu
44+
- area:cpython
45+
- area:db
46+
- area:deployment
47+
- area:destination
48+
- area:device
49+
- area:disk
50+
- area:dns
51+
- area:dotnet
52+
- area:elasticsearch
53+
- area:enduser
54+
- area:error
55+
- area:exception
56+
- area:faas
57+
- area:feature-flag
58+
- area:file
59+
- area:gcp
60+
- area:gen-ai
61+
- area:geo
62+
- area:go
63+
- area:graphql
64+
- area:hardware
65+
- area:heroku
66+
- area:host
67+
- area:http
68+
- area:ios
69+
- area:jvm
70+
- area:k8s
71+
- area:linux
72+
- area:log
73+
- area:mainframe
74+
- area:messaging
75+
- area:network
76+
- area:nodejs
77+
- area:oci
78+
- area:opentracing
79+
- area:os
80+
- area:otel
81+
- area:peer
82+
- area:process
83+
- area:profile
84+
- area:rpc
85+
- area:security-rule
86+
- area:server
87+
- area:service
88+
- area:session
89+
- area:signalr
90+
- area:source
91+
- area:system
92+
- area:telemetry
93+
- area:test
94+
- area:thread
95+
- area:tls
96+
- area:url
97+
- area:user
98+
- area:user-agent
99+
- area:v8js
100+
- area:vcs
101+
- area:webengine
102+
- area:zos
103+
# End semconv area list
17104
- type: textarea
18105
attributes:
19106
label: Propose new conventions

.github/workflows/ossf-scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
persist-credentials: false
2525

26-
- uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
26+
- uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
2727
with:
2828
results_file: results.sarif
2929
results_format: sarif
@@ -42,6 +42,6 @@ jobs:
4242
# Upload the results to GitHub's code scanning dashboard (optional).
4343
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
45+
uses: github/codeql-action/upload-sarif@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
4646
with:
4747
sarif_file: results.sarif

dependencies.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# Dependabot can keep this file up to date with latest containers.
44

55
# Weaver is used to generate markdown docs, and enforce policies on the model.
6-
FROM otel/weaver:v0.15.1@sha256:95c0aaa493d84ac72a1188756bd46eec1ead8e82004e7778ff5779736be8d578 AS weaver
6+
FROM otel/weaver:v0.15.2@sha256:b13acea09f721774daba36344861f689ac4bb8d6ecd94c4600b4d590c8fb34b9 AS weaver
77

88
# OPA is used to test policies enforced by weaver.
9-
FROM openpolicyagent/opa:1.4.2@sha256:35a093d9ae828373cf88f68ecaa8189ab26287468074a3b78f0601d9c8b7a4f5 AS opa
9+
FROM openpolicyagent/opa:1.5.1@sha256:7d30d984125161b7f30599c6bdf80a6f2301dbbd526725714c231aad8179e4b9 AS opa
1010

1111
# Lychee is used for checking links in documentation.
1212
FROM lycheeverse/lychee:sha-2aa22f8@sha256:2e3786630482c41f9f2dd081e06d7da1c36d66996e8cf6573409b8bc418d48c4 AS lychee

0 commit comments

Comments
 (0)