Skip to content

Commit

Permalink
Add revision-failure test image (#14875)
Browse files Browse the repository at this point in the history
* add revision-failure test image

* allow failure of revision after start
  • Loading branch information
dprotaso authored Feb 15, 2024
1 parent 78c5029 commit 8589e0c
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 0 deletions.
71 changes: 71 additions & 0 deletions test/test_images/revisionfailure/revisionfailure.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
Copyright 2024 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package main

import (
"flag"
"fmt"
"log"
"net/http"
"os"
"time"

"knative.dev/serving/test"
)

func handler(w http.ResponseWriter, _ *http.Request) {
log.Print("Hello world received a request.")
fmt.Fprintf(w, "Hello %v! How about some tasty noodles?", os.Getenv("NAME"))
}

func main() {
stop := make(chan struct{})

flag.Parse()
log.Println("Hello world app started.")

checkForFailure()

go func() {
test.ListenAndServeGracefully(":8080", handler)
close(stop)
}()

for {
select {
case <-time.After(5 * time.Second):
checkForFailure()
case <-stop:
return
}
}
}

func checkForFailure() {
log.Println("Checking for failure")

entries, err := os.ReadDir("/etc/config")
if err != nil {
log.Fatal("failed to read failure list", err)
}

for _, e := range entries {
if e.Name() == os.Getenv("K_REVISION") {
log.Fatalf("you want me to fail")
}
}
}
28 changes: 28 additions & 0 deletions test/test_images/revisionfailure/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
apiVersion: serving.knative.dev/v1
kind: Service
metadata:
name: revision-failure
namespace: default
spec:
template:
spec:
timeoutSeconds: 30
containers:
- image: ko://knative.dev/serving/test/test_images/revisionfailure
env:
- name: NAME
value: "$NAME"
volumeMounts:
- name: failure-list
mountPath: /etc/config
volumes:
- name: failure-list
configMap:
name: revision-failure
---
apiVersion: v1
kind: ConfigMap
metadata:
name: revision-failure
# data:
# revision-failure-00001: "1"

0 comments on commit 8589e0c

Please sign in to comment.