Skip to content

Commit 084d3d7

Browse files
committedMay 30, 2022
Remove the Signal Science container from the staging template.
Remove the Slack channel notification from the staging workflow.
1 parent 639b8b9 commit 084d3d7

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed
 

‎.github/workflows/azure-staging-build-deploy.yml

-9
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,3 @@ jobs:
161161
- name: 'Swap deployment slot to production'
162162
run: |
163163
az webapp deployment slot swap --slot ${{ env.SLOT_NAME }} --target-slot production -n ${{ env.APP_SERVICE_NAME }} -g ${{ env.RESOURCE_GROUP_NAME }}
164-
165-
- name: Send Slack notification if workflow failed
166-
uses: someimportantcompany/github-actions-slack-message@f8d28715e7b8a4717047d23f48c39827cacad340
167-
if: ${{ failure() }}
168-
with:
169-
channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
170-
bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}
171-
color: failure
172-
text: Staging deployment (Azure) failed at commit ${{ env.COMMIT_REF }}. See https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}

‎docker-compose.staging.tmpl.yaml

-10
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ services:
1919
HEROKU_PRODUCTION_APP: true
2020
PORT: 4000
2121
DD_AGENT_HOST: datadog-agent
22-
SIGSCI_RPC_ADDRESS: sigsci-agent:8000
2322
depends_on:
2423
- datadog-agent
2524
restart: always
@@ -32,12 +31,3 @@ services:
3231
DD_API_KEY: ${DD_API_KEY}
3332
DD_AGENT_HOST: datadog-agent
3433
DD_HISTOGRAM_PERCENTILES: 0.99 0.95 0.50
35-
36-
sigsci-agent:
37-
image: signalsciences/sigsci-agent
38-
ports:
39-
- '8000:8000'
40-
environment:
41-
SIGSCI_RPC_ADDRESS: 0.0.0.0:8000
42-
SIGSCI_ACCESSKEY: ${SIGSCI_ACCESSKEYID}
43-
SIGSCI_SECRETACCESSKEY: ${SIGSCI_SECRETACCESSKEY}

0 commit comments

Comments
 (0)
Please sign in to comment.