Skip to content

Commit

Permalink
Merge pull request #16 from BuoyantIO/flynn/1.2.3
Browse files Browse the repository at this point in the history
flynn/1.2.3
  • Loading branch information
kflynn committed May 2, 2024
2 parents f2b4104 + 6a6eadb commit bf810aa
Show file tree
Hide file tree
Showing 21 changed files with 22 additions and 7 deletions.
Binary file added assets/color-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/color-green.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/color-yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/face-cursing-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/face-grinning-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/face-grinning-grey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/face-grinning.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/face-hearteyes-green.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/face-hearteyes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/face-kaboom-yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/face-sleeping-pink.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/html/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion demosh/check-requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
# required here.
missing= ;\
\
for cmd in bat kubectl kubectx linkerd flux; do \
for cmd in bat kubectl linkerd flux; do \
if ! command -v $cmd >/dev/null 2>&1; then \
missing="$missing $cmd" ;\
fi ;\
Expand Down
2 changes: 2 additions & 0 deletions faces-chart/templates/color.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ spec:
env:
- name: FACES_SERVICE
value: "color"
- name: USER_HEADER_NAME
value: {{ .Values.authHeader | quote }}
{{- if .Values.color.color }}
- name: COLOR
value: {{ .Values.color.color }}
Expand Down
2 changes: 2 additions & 0 deletions faces-chart/templates/color2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ spec:
env:
- name: FACES_SERVICE
value: "color"
- name: USER_HEADER_NAME
value: {{ .Values.authHeader | quote }}
{{- if .Values.color2.color }}
- name: COLOR
value: {{ .Values.color2.color }}
Expand Down
2 changes: 2 additions & 0 deletions faces-chart/templates/face.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ spec:
env:
- name: FACES_SERVICE
value: "face"
- name: USER_HEADER_NAME
value: {{ .Values.authHeader | quote }}
{{- include "partials.face-errorFraction" . }}
{{- include "partials.face-delayBuckets" . }}
resources:
Expand Down
3 changes: 3 additions & 0 deletions faces-chart/templates/faces-gui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ spec:
- name: faces-gui
image: {{ include "partials.gui-image" . }}
imagePullPolicy: {{ include "partials.gui-imagePullPolicy" . }}
env:
- name: USER_HEADER_NAME
value: {{ .Values.authHeader | quote }}
ports:
- name: http
containerPort: 8000
Expand Down
2 changes: 2 additions & 0 deletions faces-chart/templates/smiley.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ spec:
env:
- name: FACES_SERVICE
value: "smiley"
- name: USER_HEADER_NAME
value: {{ .Values.authHeader | quote }}
{{- if .Values.smiley.smiley }}
- name: SMILEY
value: {{ .Values.smiley.smiley }}
Expand Down
2 changes: 2 additions & 0 deletions faces-chart/templates/smiley2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ spec:
env:
- name: FACES_SERVICE
value: "smiley"
- name: USER_HEADER_NAME
value: {{ .Values.authHeader | quote }}
{{- if .Values.smiley2.smiley }}
- name: SMILEY
value: {{ .Values.smiley2.smiley }}
Expand Down
3 changes: 3 additions & 0 deletions faces-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ defaultImageTag: "" # If not set, uses the appVersion
# Default imagePullPolicy. This is used only if not set in the sections below.
defaultImagePullPolicy: IfNotPresent

# User auth header.
authHeader: "X-Faces-User"

gui:
image: "" # If set, overrides the imageName/imageTag pair
imageName: ghcr.io/buoyantio/faces-gui
Expand Down
11 changes: 5 additions & 6 deletions setup-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,12 @@ helm install emissary-crds \
--wait

helm install emissary-ingress \
datawire/emissary-ingress \
oci://ghcr.io/emissary-ingress/emissary-chart \
-n emissary \
--version 8.9.1 \
--set replicaCount=1 \
--set waitForApiext.enabled=false \
--set waitForApiext.createRoles=false \
--wait
--version 0.0.0-test \
--set nameOverride=emissary \
--set fullnameOverride=emissary \
--set replicaCount=1

kubectl -n emissary wait --for condition=available --timeout=90s deploy -lproduct=aes

Expand Down

0 comments on commit bf810aa

Please sign in to comment.