generated from 18F/open-source-policy
-
Notifications
You must be signed in to change notification settings - Fork 7
71 lines (66 loc) · 2.13 KB
/
enable-egress.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
name: enable egress proxy
on: # yamllint disable-line rule:truthy
workflow_dispatch:
inputs:
appName:
description: 'App Name'
required: true
type: choice
options:
- "ssb-smtp"
- "ssb-solrcloud"
appSpace:
description: 'Cloud Foundry Space'
required: true
type: choice
options:
- "development-ssb"
- "management-staging"
- "management"
env:
SSB_DIR: ssb
CG_DIR: cg-egress-proxy
jobs:
enable-egress:
concurrency: ${{ github.event.inputs.appSpace }}
name: ${{ github.event.inputs.appName }} -- ${{ github.event.inputs.appSpace }}
environment: ${{ github.event.inputs.appSpace }}
runs-on: ubuntu-latest
steps:
- name: checkout ssb
uses: actions/checkout@v3
with:
path: ${{ env.SSB_DIR }}
- name: checkout cg-egress-proxy
uses: actions/checkout@v3
with:
repository: 'GSA/cg-egress-proxy'
path: ${{ env.CG_DIR }}
# trying to emulate:
# https://github.com/GSA/cg-egress-proxy/blob/main/Dockerfile
- name: build caddy - setup go
uses: actions/setup-go@v3
with:
go-version: '1.18.4' # latest
- name: build caddy - get xcaddy
run: go install github.com/caddyserver/xcaddy/cmd/xcaddy@latest
- name: build caddy - xcaddy build
run: >
xcaddy build
--with github.com/hairyhenderson/[email protected]
--with github.com/caddyserver/forwardproxy@caddy2
--output ${{ env.CG_DIR }}/proxy/caddy
- name: enable egress
uses: cloud-gov/cg-cli-tools@main
with:
# tmate command for testing and debugging
# command: apt-get -y install tmate; tmate -F
command: >
ssb/egress/enable-egress
${{ github.event.inputs.appName }}
${{ github.event.inputs.appSpace }}
cf_org: gsa-datagov
cf_space: ${{ github.event.inputs.appSpace }}
cf_username: ${{secrets.CF_SERVICE_USER}}
cf_password: ${{secrets.CF_SERVICE_AUTH}}