This commit is contained in:
Roxedus 2022-05-31 23:24:17 +02:00
parent 8ca343f400
commit 8380944bdf
No known key found for this signature in database
GPG Key ID: EBC13557C4D91D7B
6 changed files with 18 additions and 12 deletions

View File

@ -4,12 +4,17 @@
], ],
"kubernetes": { "kubernetes": {
"fileMatch": [ "fileMatch": [
"deployment\\.yaml$" "Deployments\\*\\.yaml$"
] ]
}, },
"helm-values": { "helm-values": {
"fileMatch": [ "fileMatch": [
"values\\.*\\.yaml$" "-values\\.yaml$"
]
},
"helmv3": {
"fileMatch": [
"-chart\\.yaml$"
] ]
}, },
"packageRules": [ "packageRules": [

View File

@ -25,3 +25,14 @@ spec:
memory: "40Mi" memory: "40Mi"
ports: ports:
- containerPort: 1688 - containerPort: 1688
---
apiVersion: v1
kind: Service
metadata:
name: py-kms
spec:
ports:
- port: 1688
targetPort: 1688
selector:
app: py-kms

View File

@ -1,10 +0,0 @@
apiVersion: v1
kind: Service
metadata:
name: py-kms
spec:
ports:
- port: 1688
targetPort: 1688
selector:
app: py-kms