Skip to content

Commit 6a7bc8e

Browse files
authored
test sign commits in my fork (#42)
1 parent 4ec677a commit 6a7bc8e

File tree

6 files changed

+8
-23
lines changed

6 files changed

+8
-23
lines changed

.ci/bump-elastic-stack-snapshot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ scms:
2121
kind: github
2222
spec:
2323
user: '{{ requiredEnv "GITHUB_ACTOR" }}'
24-
owner: elastic
24+
owner: v1v
2525
repository: apm-server
2626
token: '{{ requiredEnv "GITHUB_TOKEN" }}'
2727
branch: '{{ requiredEnv "BRANCH" }}'

.github/workflows/bump-elastic-stack.yml

+1-16
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,10 @@ permissions:
1010
contents: read
1111

1212
jobs:
13-
filter:
14-
runs-on: ubuntu-latest
15-
timeout-minutes: 1
16-
outputs:
17-
matrix: ${{ steps.generator.outputs.matrix }}
18-
steps:
19-
- id: generator
20-
uses: elastic/apm-pipeline-library/.github/actions/elastic-stack-snapshot-branches@current
21-
2213
bump-elastic-stack:
2314
runs-on: ubuntu-latest
24-
needs: [filter]
25-
strategy:
26-
fail-fast: false
27-
matrix: ${{ fromJson(needs.filter.outputs.matrix) }}
2815
steps:
2916
- uses: actions/checkout@v4
30-
with:
31-
ref: ${{ matrix.branch }}
3217

3318
- uses: elastic/apm-pipeline-library/.github/actions/updatecli@current
3419
with:
@@ -38,5 +23,5 @@ jobs:
3823
pipeline: ./.ci/bump-elastic-stack-snapshot.yml
3924
command: '--experimental apply'
4025
env:
41-
BRANCH: ${{ matrix.branch }}
26+
BRANCH: main
4227
GITHUB_ACTOR: ${{ github.actor }}

docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ x-logging: &default-logging
1010
max-size: "1g"
1111
services:
1212
elasticsearch:
13-
image: docker.elastic.co/elasticsearch/elasticsearch:8.15.0-177234da-SNAPSHOT
13+
image: docker.elastic.co/elasticsearch/elasticsearch:8.15.0-b7cc7ef3-SNAPSHOT
1414
ports:
1515
- 9200:9200
1616
healthcheck:
@@ -41,7 +41,7 @@ services:
4141
logging: *default-logging
4242

4343
kibana:
44-
image: docker.elastic.co/kibana/kibana:8.15.0-177234da-SNAPSHOT
44+
image: docker.elastic.co/kibana/kibana:8.15.0-b7cc7ef3-SNAPSHOT
4545
ports:
4646
- 5601:5601
4747
healthcheck:
@@ -60,7 +60,7 @@ services:
6060
logging: *default-logging
6161

6262
metricbeat:
63-
image: docker.elastic.co/beats/metricbeat:8.15.0-177234da-SNAPSHOT
63+
image: docker.elastic.co/beats/metricbeat:8.15.0-b7cc7ef3-SNAPSHOT
6464
environment:
6565
ELASTICSEARCH_HOSTS: '["http://elasticsearch:9200"]'
6666
ELASTICSEARCH_USERNAME: "${KIBANA_ES_USER:-admin}"

testing/infra/k8s/base/stack/apm-server.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: ApmServer
33
metadata:
44
name: apm-server
55
spec:
6-
version: 8.15.0-177234da-SNAPSHOT
6+
version: 8.15.0-b7cc7ef3-SNAPSHOT
77
count: 1
88
http:
99
tls:

testing/infra/k8s/base/stack/elasticsearch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Elasticsearch
33
metadata:
44
name: elasticsearch
55
spec:
6-
version: 8.15.0-177234da-SNAPSHOT
6+
version: 8.15.0-b7cc7ef3-SNAPSHOT
77
auth:
88
fileRealm:
99
- secretName: elasticsearch-admin

testing/infra/k8s/base/stack/kibana.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Kibana
33
metadata:
44
name: kibana
55
spec:
6-
version: 8.15.0-177234da-SNAPSHOT
6+
version: 8.15.0-b7cc7ef3-SNAPSHOT
77
count: 1
88
elasticsearchRef:
99
name: elasticsearch

0 commit comments

Comments
 (0)