Skip to content

Commit c813f0e

Browse files
mitchell-liatrioChris WarrenNeillShazlysteve-liatrio
authored
feat: service bus enhancements (#42)
* feat: breaking out code into separate files * chore: validate function demo * feat: webhook event handler function * chore: fix dependencies * chore: dependency fixes * chore: dependency fixes * chore: dependency fixes * chore: dependency fixes * chore: dependency fixes * chore: dependency fixes * chore: dependency fixes * fix: json path fix * chore: reset json path * chore: add debugging * fix: azure functions env requires req.body instead of .payload * fix: additional body not payload * feat: consolidate function code * chore: remove file for eslint * feat: function app tf * feat: tf for function app * feat: pushing current state * feat: pushing current state * chore: version that works when run as a docker container manually * feat: omit dev dependencies * feat: azure function code split * chore: add newlines * fix: adding missing outputs.tf file * fix: resolving tfsec issue for storage account * ci: add yarnlock * fix: updating to use es6 imports * fix: updating image_tag to latest * feat: move controller code * feat: update to use service-bus * chore: resolve merge conflicts * chore: resolve merge conflicts * chore: pushing incomplete changes * remove server code and distroless from runner build for debugging * feat: service bus update * feat: service bus update * feat: service bus update * feat: service bus update * feat: webhooker queue processes runner delete events, labeless msgs and github workflow events * add run loop for reciever to process subscribed messages * migrated git runner queue logic from v1 app, updated run loop to initialize state and both queues * feat: add state queue infrastructure code * WIP: state queue * feat: state queue implementation * fix: resolve issues with sender * neill: pushing changes * fix: add renamed file * update logging workflow and refactor reconcile to remove event processing * fix: consilidate logging calls through logger * fix: send json to queues * fix: runner state resolution fixed * feat: add module for aci deployment * feat: update terraform for aci * chore: add missing files * feat: add healthcheck server * feat: finalize controller split and create app service * ci: lintfix against matrix * ci: add eslint to each app * chore: resolve eslint errors * chore: add missing eslint * chore: lintfixing * chore: lintfixing * chore: lintfixing * chore: lintfixing * Update .github/workflows/eslint.yml Co-authored-by: steve-liatrio <[email protected]> * Update app/runner-controller/Dockerfile Co-authored-by: steve-liatrio <[email protected]> * Update app/runner-controller/receiver.js Co-authored-by: steve-liatrio <[email protected]> * Update app/runner-controller/state-receiver.js Co-authored-by: steve-liatrio <[email protected]> * fix: removing unused function and code cleanup * chore: terrafmt Co-authored-by: Chris Warren <[email protected]> Co-authored-by: Neill Shazly <[email protected]> Co-authored-by: steve-liatrio <[email protected]>
1 parent 281c7af commit c813f0e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+9230
-1251
lines changed

.github/workflows/eslint.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77

88
jobs:
99
lint:
10+
strategy:
11+
max-parallel: 2
12+
fail-fast: false
13+
matrix:
14+
app: ['event-handler','runner-controller']
1015
runs-on: ubuntu-latest
1116
steps:
1217
- name: Checkout Code
@@ -16,11 +21,11 @@ jobs:
1621
uses: actions/setup-node@v2
1722
with:
1823
node-version: "18"
19-
24+
2025
- name: Install Dependencies
2126
run: yarn install
22-
working-directory: app
27+
working-directory: app/${{ matrix.app }}
2328

2429
- name: Lint
2530
run: yarn run lint
26-
working-directory: app
31+
working-directory: app/${{ matrix.app }}

app/.dockerignore

-4
This file was deleted.

app/Dockerfile

-16
This file was deleted.
File renamed without changes.

app/event-handler/eventHandler/util.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const validateRequest = async (context, request) => {
4343
return false;
4444
}
4545

46-
const allRequestedRunnerLabelsMatch = await validateRequestWorkflowJobLabels(request);
46+
const allRequestedRunnerLabelsMatch = await validateRequestWorkflowJobLabels(context, request);
4747
context.log.debug("Checked runner label match, with result", allRequestedRunnerLabelsMatch);
4848

4949
if (!allRequestedRunnerLabelsMatch) {
@@ -58,11 +58,17 @@ export const validateRequest = async (context, request) => {
5858
return validateRequestSignature(request);
5959
};
6060

61-
const validateRequestWorkflowJobLabels = async (request) => {
61+
const validateRequestWorkflowJobLabels = async (context, request) => {
6262
const githubRunnerLabelsString = await getConfigValue("github-runner-labels");
6363
const githubRunnerLabels = new Set(JSON.parse(githubRunnerLabelsString));
6464
const { labels } = request.body.workflow_job;
6565

66+
if (labels.length === 0) {
67+
context.log.verbose("0 length labels array found");
68+
69+
return false;
70+
}
71+
6672
return labels.every((label) => defaultRunnerLabels.has(label.toLowerCase()) || githubRunnerLabels.has(label));
6773
};
6874

0 commit comments

Comments
 (0)