Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
Signed-off-by: sallyom <[email protected]>
  • Loading branch information
sallyom committed Jun 23, 2024
1 parent dc012ed commit 13f39d1
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 30 deletions.
28 changes: 16 additions & 12 deletions .github/workflows/chatbot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,36 +51,40 @@ jobs:
- name: Configure OpenTelemetry Collector
run: |
echo '
extensions:
basicauth/client:
client_auth:
username: "${{ secrets.OTEL_USERNAME }}"
password: "${{ secrets.OTEL_PASSWORD }}"
receivers:
otlp:
protocols:
grpc:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
exporters:
otlphttp:
endpoint: https://apps.platform-sts.pcbk.p1.openshiftapps.com
endpoint: https://otc.apps.platform-sts.pcbk.p1.openshiftapps.com
auth:
authenticator: basicauth/client
tls:
insecure: false
cert_pem: ${{ secrets.CLIENT_CERT_ROSA_OTEL }}
key_pem: ${{ secrets.CLIENT_KEY_ROSA_OTEL }}
ca_pem: ${{ secrets.SERVER_CERT_ROSA_OTEL }}
logging:
ca_pem: "${{ secrets.ROSA_ROOT_CERT }}"
debug:
verbosity: detailed
service:
extensions: [basicauth/client]
pipelines:
traces:
receivers: [otlp]
exporters: [logging,otlphttp]
exporters: [debug, otlphttp]
' > otel-collector-config.yaml
- name: Run OpenTelemetry Collector
run: |
curl --proto '=https' --tlsv1.2 -fOL https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.102.1/otelcol_0.102.1_linux_amd64.tar.gz
tar -xvf otelcol_0.102.1_linux_amd64.tar.gz
chmod +x otelcol
./otelcol --config otel-collector-config.yaml &
wget https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.103.0/otelcol-contrib_0.103.0_linux_amd64.tar.gz
tar -xvf otelcol-contrib_0.103.0_linux_amd64.tar.gz
chmod +x otelcol-contrib
./otelcol-contrib --config otel-collector-config.yaml &
- name: Install qemu dependency
run: |
Expand Down
46 changes: 28 additions & 18 deletions .github/workflows/test-trace-steps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@ on:

jobs:
test:
runs-on: ubuntu-latest

if: "!contains(github.event.pull_request.labels.*.name, 'hold-tests')"
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v2

- uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
Expand All @@ -28,39 +26,51 @@ jobs:
run: |
pip install --no-cache-dir opentelemetry-sdk opentelemetry-exporter-otlp opentelemetry-instrumentation
- name: Download OpenTelemetry Collector Contrib
run: |
wget https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.103.0/otelcol-contrib_0.103.0_linux_amd64.tar.gz
tar -xvf otelcol-contrib_0.103.0_linux_amd64.tar.gz
- name: Write rosa cluster ca.crt to file
env:
ROSA_ROOT_CERT: ${{ secrets.ROSA_ROOT_CERT }}
run: |
echo "${ROSA_ROOT_CERT}" | base64 --decode > /tmp/ca.crt
- name: Configure OpenTelemetry Collector
run: |
echo '
extensions:
basicauth/client:
client_auth:
username: "${{ secrets.OTEL_USERNAME }}"
password: "${{ secrets.OTEL_PASSWORD }}"
receivers:
otlp:
protocols:
grpc:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
exporters:
otlphttp:
endpoint: https://apps.platform-sts.pcbk.p1.openshiftapps.com
endpoint: https://otc.apps.platform-sts.pcbk.p1.openshiftapps.com
auth:
authenticator: basicauth/client
tls:
insecure: false
cert_pem: ${{ secrets.CLIENT_CERT_ROSA_OTEL }}
key_pem: ${{ secrets.CLIENT_KEY_ROSA_OTEL }}
ca_pem: ${{ secrets.SERVER_CERT_ROSA_OTEL }}
logging:
ca_file: /tmp/ca.crt
debug:
verbosity: detailed
service:
extensions: [basicauth/client]
pipelines:
traces:
receivers: [otlp]
exporters: [logging,otlphttp]
' > otel-collector-config.yaml
exporters: [debug, otlphttp]
' > otel-collector-config.yaml
- name: Run OpenTelemetry Collector
run: |
curl --proto '=https' --tlsv1.2 -fOL https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.102.1/otelcol_0.102.1_linux_amd64.tar.gz
tar -xvf otelcol_0.102.1_linux_amd64.tar.gz
chmod +x otelcol
./otelcol --config otel-collector-config.yaml &
./otelcol-contrib --config otel-collector-config.yaml &
- name: Start build trace
run: |
Expand Down

0 comments on commit 13f39d1

Please sign in to comment.