Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .devcontainer/library-scripts/common-debian.sh
100755 → 100644
Empty file.
Binary file removed .mvn/wrapper/maven-wrapper.jar
Binary file not shown.

This file was deleted.

Empty file modified client-java-contrib/cert-manager/update.sh
100755 → 100644
Empty file.
Empty file modified client-java-contrib/prometheus-operator/update.sh
100755 → 100644
Empty file.
Empty file modified examples/examples-release-17/createPod.sh
100755 → 100644
Empty file.
Empty file modified examples/examples-release-18/createPod.sh
100755 → 100644
Empty file.
Empty file modified examples/examples-release-19/createPod.sh
100755 → 100644
Empty file.
Empty file modified examples/examples-release-20/createPod.sh
100755 → 100644
Empty file.
Empty file modified examples/examples-release-latest/createPod.sh
100755 → 100644
Empty file.
Empty file modified fluent-gen/generate.sh
100755 → 100644
Empty file.
Empty file.
32 changes: 32 additions & 0 deletions kubernetes/.github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,35 @@ jobs:
cache: maven
- name: Build with Maven
run: mvn -B package --no-transfer-progress --file pom.xml
# kubernetes.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-app
spec:
replicas: 2
selector:
matchLabels:
app: my-app
template:
metadata:
labels:
app: my-app
spec:
containers:
- name: my-container
image: my-image:latest
ports:
- containerPort: 8080
---
apiVersion: v1
kind: Service
metadata:
name: my-service
spec:
selector:
app: my-app
ports:
- protocol: TCP
port: 80
targetPort: 8080
Empty file modified mvnw
100755 → 100644
Empty file.
Loading