File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -74,9 +74,7 @@ deploy-secrets-cert:
74
74
# # deploy the docker registry secret utilized by the application
75
75
deploy-secrets-docker-repo :
76
76
$(eval github-token := $(shell aws ssm get-parameter --name "/github/pat" --with-decryption --query "Parameter.Value" --output text) )
77
- # test the token
78
77
echo $(github-token ) | docker login ghcr.io -u $(name ) --password-stdin
79
- # create the secret
80
78
kubectl create secret docker-registry docker-registry \
81
79
--namespace=" $( name-dashed) " \
82
80
--docker-server=ghcr.io/$(name ) \
@@ -99,6 +97,8 @@ deploy-secrets-docker-repo:
99
97
# --dry-run=client -o yml | kubectl apply -f -
100
98
101
99
.deploy :
100
+ $(eval github-token := $(shell aws ssm get-parameter --name "/github/pat" --with-decryption --query "Parameter.Value" --output text) )
101
+ echo $(github-token ) | docker login ghcr.io -u $(name ) --password-stdin
102
102
env \
103
103
NAME=$(name-dashed ) \
104
104
DNS_NAME=$(dns-name ) \
Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ kind: Service
51
51
metadata :
52
52
name : ${NAME}-service
53
53
namespace : ${NAME}
54
+ annotations :
55
+ tailscale.com/expose : " true"
54
56
spec :
55
57
type : ClusterIP
56
58
selector :
You can’t perform that action at this time.
0 commit comments