Skip to content
Merged
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
3 changes: 2 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# text files use OS defaults on checkout, LF on checkin
* text eol=auto
# images are binary
*.png binary
*.png binary
*.ico binary
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Git was complaining about some of the icons in the repo.

2 changes: 1 addition & 1 deletion samples/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Reference applicatins
# Reference applications

Reference apps are templates that show a complete app. You are able to clone and deploy any of these apps to try out various Project Radius functionality.

Expand Down
5 changes: 5 additions & 0 deletions samples/demo/Chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: v1
appVersion: "0.1.0"
version: 0.1.0
name: demo
description: A Helm chart for the Radius demo application.
25 changes: 25 additions & 0 deletions samples/demo/Chart/templates/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: webapp
namespace: {{ .Release.Namespace }}
spec:
selector:
matchLabels:
app: webapp
template:
metadata:
labels:
app: webapp
spec:
containers:
- name: webapp
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
env:
- name: CONNECTION_REDIS_URL
valueFrom:
secretKeyRef:
name: redis-secret
key: url
ports:
- containerPort: 3000
3 changes: 3 additions & 0 deletions samples/demo/Chart/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
image:
repository: ghcr.io/radius-project/samples/demo
tag: latest