Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/provide-diff-or-description-for-code-changes #44

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
339 changes: 218 additions & 121 deletions .jarvis/cue/jarvis-0.cue

Large diffs are not rendered by default.

1,092 changes: 700 additions & 392 deletions .jarvis/cue/jarvis-0.json

Large diffs are not rendered by default.

2,303 changes: 1,209 additions & 1,094 deletions .jarvis/models/jarvis-0.lp

Large diffs are not rendered by default.

1,026 changes: 531 additions & 495 deletions .jarvis/models/jarvis-0.lp.debug

Large diffs are not rendered by default.

1,092 changes: 700 additions & 392 deletions .jarvis/tasks/jarvis-0.json

Large diffs are not rendered by default.

1,561 changes: 935 additions & 626 deletions .jarvis/tasks/jarvis-0.las

Large diffs are not rendered by default.

339 changes: 218 additions & 121 deletions .jarvis/templates/jarvis.cue

Large diffs are not rendered by default.

37 changes: 28 additions & 9 deletions .jarvis/templates/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,32 @@
apiVersion: v1
kind: Pod
kind: Service
metadata:
name: example-pod
name: simple-service
spec:
containers:
- command:
- /bin/sh
- -c
- echo Hello, World!
image: nginx
name: example-container
ports:
- port: 80
protocol: TCP
targetPort: 8080
selector:
app: MyApp
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: simple-deployment
spec:
replicas: 2
selector:
matchLabels:
app: MyApp
template:
metadata:
labels:
app: MyApp
spec:
containers:
- image: myapp:latest
name: myapp-container
ports:
- containerPort: 8080