-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* auto update kustomize version * update readme * feat: provide overlay examples * feat: provide overlay examples * remove test server * newline * newline
- Loading branch information
Showing
17 changed files
with
126 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,6 @@ jobs: | |
uses: go-semantic-release/[email protected] | ||
with: | ||
github-token: ${{ secrets.PAT }} | ||
allow-initial-development-versions: true | ||
allow-initial-development-versions: true | ||
extra-plugins: | | ||
@semantic-release/exec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"plugins": [ | ||
["@semantic-release/exec", { | ||
"publishCmd": "sed -i 's/\(newTag:\).*/\1 ${nextRelease.version}/' deploy/kustomize/overlays/*/kustomization.yaml" | ||
}], | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...kustomize/overlays/example/namespace.yaml → deploy/kustomize/base/namespace.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
kind: Namespace | ||
apiVersion: v1 | ||
metadata: | ||
name: signalilo-scrubbed | ||
name: scrubbed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: signalilo-scrubbed | ||
name: scrubbed |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
namespace: scrubbed | ||
|
||
images: | ||
- name: scrubbed | ||
newName: quay.io/adfinis/scrubbed | ||
newTag: v0.2.0 | ||
|
||
resources: | ||
- ../../base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
deploy/kustomize/overlays/with-signalilo/deployment-patch.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
kind: Deployment | ||
apiVersion: apps/v1 | ||
metadata: | ||
name: scrubbed | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- resources: | ||
limits: | ||
cpu: 20m | ||
memory: 32Mi | ||
requests: | ||
cpu: 10m | ||
memory: 16Mi | ||
readinessProbe: | ||
httpGet: | ||
path: /healthz | ||
port: 8888 | ||
scheme: HTTP | ||
timeoutSeconds: 1 | ||
periodSeconds: 10 | ||
successThreshold: 1 | ||
failureThreshold: 3 | ||
terminationMessagePath: /dev/termination-log | ||
name: signalilo | ||
command: | ||
- signalilo | ||
livenessProbe: | ||
httpGet: | ||
path: /healthz | ||
port: 8888 | ||
scheme: HTTP | ||
timeoutSeconds: 1 | ||
periodSeconds: 10 | ||
successThreshold: 1 | ||
failureThreshold: 3 | ||
ports: | ||
- containerPort: 8888 | ||
protocol: TCP | ||
imagePullPolicy: Always | ||
terminationMessagePolicy: File | ||
envFrom: | ||
- configMapRef: | ||
name: signalilo | ||
- secretRef: | ||
name: signalilo | ||
image: scrubbed |
18 changes: 18 additions & 0 deletions
18
deploy/kustomize/overlays/with-signalilo/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
namespace: scrubbed | ||
|
||
images: | ||
- name: scrubbed | ||
newName: quay.io/adfinis/scrubbed-signalilo | ||
newTag: v0.2.0 | ||
|
||
resources: | ||
- ../../base | ||
- secret-signalilo.yaml | ||
- configmap-signalilo.yaml | ||
|
||
patches: | ||
- path: deployment-patch.yaml | ||
- path: service-patch.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
deploy/kustomize/overlays/with-signalilo/service-patch.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
kind: Service | ||
apiVersion: v1 | ||
metadata: | ||
name: scrubbed | ||
spec: | ||
ports: | ||
- name: signalilo | ||
protocol: TCP | ||
port: 8888 | ||
targetPort: 8888 |