-
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.
Merge pull request #11 from nautible/release/2023.1
Release/2023.1
- Loading branch information
Showing
40 changed files
with
568 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
nautible | ||
Copyright 2021 OGIS-RI Co.,Ltd. |
71 changes: 71 additions & 0 deletions
71
nautible-app-examples-manifest-go/base/examples-deployment.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,71 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nautible-app-examples-go | ||
namespace: nautible-app-examples | ||
labels: | ||
app.kubernetes.io/name: nautible-app-examples-go | ||
app.kubernetes.io/instance: nautible-app-examples-go | ||
app.kubernetes.io/version: 1.0.0 | ||
app.kubernetes.io/component: app | ||
app.kubernetes.io/part-of: nautible | ||
app.kubernetes.io/managed-by: manual | ||
spec: | ||
replicas: 2 | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/instance: nautible-app-examples-go | ||
app.kubernetes.io/component: app | ||
template: | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: nautible-app-examples-go | ||
app.kubernetes.io/instance: nautible-app-examples-go | ||
app.kubernetes.io/version: 1.0.0 | ||
app.kubernetes.io/component: app | ||
app.kubernetes.io/part-of: nautible | ||
app.kubernetes.io/managed-by: manual | ||
spec: | ||
securityContext: | ||
runAsUser: 65534 | ||
containers: | ||
- name: nautible-app-examples-go | ||
image: public.ecr.aws/nautible/nautible-app-examples-go:dummy | ||
imagePullPolicy: Always | ||
securityContext: | ||
allowPrivilegeEscalation: false | ||
runAsNonRoot: true | ||
readOnlyRootFilesystem: true | ||
capabilities: | ||
drop: | ||
- all | ||
volumeMounts: | ||
- mountPath: /tmp | ||
name: tmp-nautible-app-examples-mount | ||
resources: | ||
requests: | ||
memory: "64Mi" | ||
cpu: "250m" | ||
limits: | ||
memory: "128Mi" | ||
cpu: "500m" | ||
ports: | ||
- name: http | ||
protocol: TCP | ||
containerPort: 8080 | ||
livenessProbe: | ||
httpGet: | ||
port: 8080 | ||
path: /healthz | ||
failureThreshold: 10 | ||
periodSeconds: 30 | ||
readinessProbe: | ||
httpGet: | ||
port: 8080 | ||
path: /healthz | ||
failureThreshold: 10 | ||
periodSeconds: 30 | ||
volumes: | ||
- name: tmp-nautible-app-examples-mount | ||
hostPath: | ||
path: /tmp |
20 changes: 20 additions & 0 deletions
20
nautible-app-examples-manifest-go/base/examples-service.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,20 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: nautible-app-examples-go | ||
namespace: nautible-app-examples | ||
labels: | ||
app.kubernetes.io/name: nautible-app-examples-go | ||
app.kubernetes.io/instance: nautible-app-examples-go | ||
app.kubernetes.io/version: 1.0.0 | ||
app.kubernetes.io/component: app | ||
app.kubernetes.io/part-of: nautible | ||
app.kubernetes.io/managed-by: manual | ||
spec: | ||
selector: | ||
app.kubernetes.io/instance: nautible-app-examples-go | ||
app.kubernetes.io/component: app | ||
ports: | ||
- name: http-nautible-app-examples-port | ||
port: 8080 | ||
targetPort: 8080 |
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,3 @@ | ||
resources: | ||
- examples-deployment.yaml | ||
- examples-service.yaml |
16 changes: 16 additions & 0 deletions
16
nautible-app-examples-manifest-go/overlays/aws/dev/examples-deployment.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,16 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nautible-app-examples-go | ||
namespace: nautible-app-examples | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: nautible-app-examples-go | ||
image: public.ecr.aws/nautible/nautible-app-examples-go:ee6cce6463b1b34971a334e74306931830bbc170 | ||
env: | ||
- name: LOG_LEVEL # DEBUG, INFO, WARN, ERROR, DPANIC, PANIC, FATAL | ||
value: INFO | ||
- name: LOG_FORMAT # json, console | ||
value: json |
4 changes: 4 additions & 0 deletions
4
nautible-app-examples-manifest-go/overlays/aws/dev/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,4 @@ | ||
bases: | ||
- ../../../base | ||
patchesStrategicMerge: | ||
- examples-deployment.yaml |
17 changes: 17 additions & 0 deletions
17
nautible-app-examples-manifest-go/overlays/aws/local-dev/examples-deployment.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,17 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nautible-app-examples-go | ||
namespace: nautible-app-examples | ||
spec: | ||
replicas: 1 | ||
template: | ||
spec: | ||
containers: | ||
- name: nautible-app-examples-go | ||
imagePullPolicy: Never | ||
env: | ||
- name: LOG_LEVEL # DEBUG, INFO, WARN, ERROR, DPANIC, PANIC, FATAL | ||
value: DEBUG | ||
- name: LOG_FORMAT # json, console | ||
value: console |
4 changes: 4 additions & 0 deletions
4
nautible-app-examples-manifest-go/overlays/aws/local-dev/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,4 @@ | ||
bases: | ||
- ../../../base | ||
patchesStrategicMerge: | ||
- examples-deployment.yaml |
16 changes: 16 additions & 0 deletions
16
nautible-app-examples-manifest-go/overlays/azure/dev/examples-deployment.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,16 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nautible-app-examples-go | ||
namespace: nautible-app-examples | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: nautible-app-examples-go | ||
image: nautibledevacr.azurecr.io/nautible-app-examples-go:ee6cce6463b1b34971a334e74306931830bbc170 | ||
env: | ||
- name: LOG_LEVEL # DEBUG, INFO, WARN, ERROR, DPANIC, PANIC, FATAL | ||
value: INFO | ||
- name: LOG_FORMAT # json, console | ||
value: json |
4 changes: 4 additions & 0 deletions
4
nautible-app-examples-manifest-go/overlays/azure/dev/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,4 @@ | ||
bases: | ||
- ../../../base | ||
patchesStrategicMerge: | ||
- examples-deployment.yaml |
18 changes: 18 additions & 0 deletions
18
nautible-app-examples-manifest-go/overlays/azure/local-dev/examples-deployment.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: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nautible-app-examples-go | ||
namespace: nautible-app-examples | ||
spec: | ||
replicas: 1 | ||
template: | ||
spec: | ||
containers: | ||
- name: nautible-app-examples-go | ||
image: nautibledevacr.azurecr.io/nautible-app-examples-go:latest | ||
imagePullPolicy: Never | ||
env: | ||
- name: LOG_LEVEL # DEBUG, INFO, WARN, ERROR, DPANIC, PANIC, FATAL | ||
value: DEBUG | ||
- name: LOG_FORMAT # json, console | ||
value: console |
4 changes: 4 additions & 0 deletions
4
nautible-app-examples-manifest-go/overlays/azure/local-dev/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,4 @@ | ||
bases: | ||
- ../../../base | ||
patchesStrategicMerge: | ||
- examples-deployment.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 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
14 changes: 14 additions & 0 deletions
14
nautible-app-examples-manifest-java/overlays/azure/dev/examples-deployment.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,14 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nautible-app-examples-java | ||
namespace: nautible-app-examples | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: nautible-app-examples-java | ||
image: nautibledevacr.azurecr.io/nautible-app-examples-java:ee6cce6463b1b34971a334e74306931830bbc170 | ||
env: | ||
- name: QUARKUS_PROFILE | ||
value: azure-dev |
4 changes: 4 additions & 0 deletions
4
nautible-app-examples-manifest-java/overlays/azure/dev/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,4 @@ | ||
bases: | ||
- ../../../base | ||
patchesStrategicMerge: | ||
- examples-deployment.yaml |
16 changes: 16 additions & 0 deletions
16
nautible-app-examples-manifest-java/overlays/azure/local-dev/examples-deployment.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,16 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nautible-app-examples-java | ||
namespace: nautible-app-examples | ||
spec: | ||
replicas: 1 | ||
template: | ||
spec: | ||
containers: | ||
- name: nautible-app-examples-java | ||
image: nautibledevacr.azurecr.io/nautible-app-examples-java:latest | ||
imagePullPolicy: Never | ||
env: | ||
- name: QUARKUS_PROFILE | ||
value: azure-local-dev |
4 changes: 4 additions & 0 deletions
4
nautible-app-examples-manifest-java/overlays/azure/local-dev/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,4 @@ | ||
bases: | ||
- ../../../base | ||
patchesStrategicMerge: | ||
- examples-deployment.yaml |
71 changes: 71 additions & 0 deletions
71
nautible-app-examples-manifest-node/base/examples-deployment.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,71 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nautible-app-examples-node | ||
namespace: nautible-app-examples | ||
labels: | ||
app.kubernetes.io/name: nautible-app-examples-node | ||
app.kubernetes.io/instance: nautible-app-examples-node | ||
app.kubernetes.io/version: 1.0.0 | ||
app.kubernetes.io/component: app | ||
app.kubernetes.io/part-of: nautible | ||
app.kubernetes.io/managed-by: manual | ||
spec: | ||
replicas: 2 | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/instance: nautible-app-examples-node | ||
app.kubernetes.io/component: app | ||
template: | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: nautible-app-examples-node | ||
app.kubernetes.io/instance: nautible-app-examples-node | ||
app.kubernetes.io/version: 1.0.0 | ||
app.kubernetes.io/component: app | ||
app.kubernetes.io/part-of: nautible | ||
app.kubernetes.io/managed-by: manual | ||
spec: | ||
securityContext: | ||
runAsUser: 65534 | ||
containers: | ||
- name: nautible-app-examples-node | ||
image: public.ecr.aws/nautible/nautible-app-examples-node:dummy | ||
imagePullPolicy: Always | ||
securityContext: | ||
allowPrivilegeEscalation: false | ||
runAsNonRoot: true | ||
readOnlyRootFilesystem: true | ||
capabilities: | ||
drop: | ||
- all | ||
volumeMounts: | ||
- mountPath: /tmp | ||
name: tmp-nautible-app-examples-mount | ||
resources: | ||
requests: | ||
memory: "64Mi" | ||
cpu: "250m" | ||
limits: | ||
memory: "128Mi" | ||
cpu: "500m" | ||
ports: | ||
- name: http | ||
protocol: TCP | ||
containerPort: 8080 | ||
livenessProbe: | ||
httpGet: | ||
port: 8080 | ||
path: /healthz | ||
failureThreshold: 10 | ||
periodSeconds: 30 | ||
readinessProbe: | ||
httpGet: | ||
port: 8080 | ||
path: /healthz | ||
failureThreshold: 10 | ||
periodSeconds: 30 | ||
volumes: | ||
- name: tmp-nautible-app-examples-mount | ||
hostPath: | ||
path: /tmp |
20 changes: 20 additions & 0 deletions
20
nautible-app-examples-manifest-node/base/examples-service.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,20 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: nautible-app-examples-node | ||
namespace: nautible-app-examples | ||
labels: | ||
app.kubernetes.io/name: nautible-app-examples-node | ||
app.kubernetes.io/instance: nautible-app-examples-node | ||
app.kubernetes.io/version: 1.0.0 | ||
app.kubernetes.io/component: app | ||
app.kubernetes.io/part-of: nautible | ||
app.kubernetes.io/managed-by: manual | ||
spec: | ||
selector: | ||
app.kubernetes.io/instance: nautible-app-examples-node | ||
app.kubernetes.io/component: app | ||
ports: | ||
- name: http-nautible-app-examples-port | ||
port: 8080 | ||
targetPort: 8080 |
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,3 @@ | ||
resources: | ||
- examples-deployment.yaml | ||
- examples-service.yaml |
14 changes: 14 additions & 0 deletions
14
nautible-app-examples-manifest-node/overlays/aws/dev/examples-deployment.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,14 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nautible-app-examples-node | ||
namespace: nautible-app-examples | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: nautible-app-examples-node | ||
image: public.ecr.aws/nautible/nautible-app-examples-node:ee6cce6463b1b34971a334e74306931830bbc170 | ||
env: | ||
- name: LOG_LEVEL # error, warn, info, verbose, debug | ||
value: info |
4 changes: 4 additions & 0 deletions
4
nautible-app-examples-manifest-node/overlays/aws/dev/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,4 @@ | ||
bases: | ||
- ../../../base | ||
patchesStrategicMerge: | ||
- examples-deployment.yaml |
15 changes: 15 additions & 0 deletions
15
nautible-app-examples-manifest-node/overlays/aws/local-dev/examples-deployment.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,15 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: nautible-app-examples-node | ||
namespace: nautible-app-examples | ||
spec: | ||
replicas: 1 | ||
template: | ||
spec: | ||
containers: | ||
- name: nautible-app-examples-node | ||
imagePullPolicy: Never | ||
env: | ||
- name: LOG_LEVEL # error, warn, info, verbose, debug | ||
value: debug |
Oops, something went wrong.