diff --git a/README.adoc b/README.adoc
index 83e450fc8..065e623a2 100644
--- a/README.adoc
+++ b/README.adoc
@@ -41,8 +41,7 @@ then turning them into `@Beans` that can be wrapped as above.
isolated classloader, so that you can pack them together in a single
JVM.
-4. TBD: adapters for AWS Lambda, and possibly other "serverless"
-service providers.
+4. Adapters for https://github.com/markfisher/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-aws[AWS Lambda], https://github.com/markfisher/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk[Apache OpenWhisk] and possibly other "serverless" service providers.
== Getting Started
diff --git a/spring-cloud-function-adapters/pom.xml b/spring-cloud-function-adapters/pom.xml
index 62644e781..04f254bc1 100644
--- a/spring-cloud-function-adapters/pom.xml
+++ b/spring-cloud-function-adapters/pom.xml
@@ -28,7 +28,8 @@
spring-cloud-function-adapter-aws
- spring-cloud-function-adapter-sample
+ spring-cloud-function-adapter-openwhisk
+ spring-cloud-function-adapter-samples
diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-sample/.jdk8 b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/.jdk8
similarity index 100%
rename from spring-cloud-function-adapters/spring-cloud-function-adapter-sample/.jdk8
rename to spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/.jdk8
diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/README.md b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/README.md
new file mode 100644
index 000000000..3f3cd5da3
--- /dev/null
+++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/README.md
@@ -0,0 +1,79 @@
+Implement a POF:
+
+```
+package functions;
+
+import java.util.function.Function;
+
+public class Uppercase implements Function {
+
+ public String apply(String input) {
+ return input.toUpperCase();
+ }
+}
+```
+
+Install it into your local Maven repository:
+
+```
+./mvnw clean install
+```
+
+Create a `function.properties` file that provides its Maven coordinates. For example:
+
+```
+dependencies.function: io.spring.sample:uppercase-function:0.0.1-SNAPSHOT
+```
+
+Copy the openwhisk runner JAR to the working directory (same directory as the properties file):
+
+```
+cp spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/target/spring-cloud-function-adapter-openwhisk-1.0.0.BUILD-SNAPSHOT.jar runner.jar
+```
+
+Generate a m2 repo from the `--thin.dryrun` of the runner JAR with the above properties file:
+
+```
+java -jar runner.jar --thin.root=m2 --thin.name=function --thin.dryrun
+```
+
+Use the following Dockerfile:
+
+```
+FROM openjdk:8
+
+COPY m2 /m2
+ADD runner.jar .
+ADD function.properties .
+
+ENTRYPOINT [ "sh", "-c", "java -Djava.security.egd=file:/dev/./urandom -jar runner.jar --thin.root=/m2 --thin.name=function --function.name=uppercase" ]
+
+EXPOSE 8080
+```
+
+Build the Docker image:
+
+```
+docker build -t [username/appname] .
+```
+
+Push the Docker image:
+
+```
+docker push [username/appname]
+```
+
+Use the OpenWhisk CLI (e.g. after `vagrant ssh`) to create the action:
+
+```
+wsk action create --docker example [username/appname]
+```
+
+Invoke the action:
+
+```
+wsk action invoke --result example --param payload foo
+{
+ "result": "FOO"
+}
+```
diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/pom.xml b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/pom.xml
new file mode 100644
index 000000000..1da62b80f
--- /dev/null
+++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/pom.xml
@@ -0,0 +1,115 @@
+
+
+ 4.0.0
+
+ org.springframework.cloud
+ spring-cloud-function-adapter-openwhisk
+ 1.0.0.BUILD-SNAPSHOT
+ jar
+
+ spring-cloud-function-adapter-openwhisk
+ Apache OpenWhisk Adapter for Spring Cloud Function
+
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 1.5.3.RELEASE
+
+
+
+
+ UTF-8
+ UTF-8
+ 1.8
+ 3.0.7.RELEASE
+ 1.0.4.BUILD-SNAPSHOT
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-function-context
+ 1.0.0.BUILD-SNAPSHOT
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ io.projectreactor
+ reactor-core
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ Dalston.BUILD-SNAPSHOT
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+ org.springframework.boot.experimental
+ spring-boot-thin-layout
+ ${wrapper.version}
+
+
+
+
+
+
+
+
+ spring-snapshots
+ Spring Snapshots
+ https://repo.spring.io/snapshot
+
+ true
+
+
+
+ spring-milestones
+ Spring Milestones
+ https://repo.spring.io/milestone
+
+ false
+
+
+
+
+
+ spring-snapshots
+ Spring Snapshots
+ https://repo.spring.io/snapshot
+
+ true
+
+
+
+ spring-milestones
+ Spring Milestones
+ https://repo.spring.io/milestone
+
+ false
+
+
+
+
+
diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/src/main/java/org/springframework/cloud/function/adapter/openwhisk/ActionApplication.java b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/src/main/java/org/springframework/cloud/function/adapter/openwhisk/ActionApplication.java
new file mode 100644
index 000000000..6af423e43
--- /dev/null
+++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/src/main/java/org/springframework/cloud/function/adapter/openwhisk/ActionApplication.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2017 the original author or 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 org.springframework.cloud.function.adapter.openwhisk;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+
+/**
+ * @author Mark Fisher
+ */
+@SpringBootApplication
+@EnableConfigurationProperties(FunctionProperties.class)
+public class ActionApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(ActionApplication.class, args);
+ }
+}
diff --git a/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/src/main/java/org/springframework/cloud/function/adapter/openwhisk/ActionController.java b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/src/main/java/org/springframework/cloud/function/adapter/openwhisk/ActionController.java
new file mode 100644
index 000000000..6da8b0c0a
--- /dev/null
+++ b/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk/src/main/java/org/springframework/cloud/function/adapter/openwhisk/ActionController.java
@@ -0,0 +1,91 @@
+/*
+ * Copyright 2017 the original author or 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 org.springframework.cloud.function.adapter.openwhisk;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+import java.util.Map;
+
+import org.springframework.cloud.function.context.FunctionScan;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.databind.ObjectMapper;
+
+import reactor.core.publisher.Flux;
+
+/**
+ * @author Mark Fisher
+ */
+@FunctionScan
+@RestController
+public class ActionController extends FunctionInitializer {
+
+ private final ObjectMapper objectMapper = new ObjectMapper();
+
+ public ActionController() {
+ super();
+ }
+
+ @PostMapping("/init")
+ public void init(@RequestBody InitRequest request) {
+ initialize();
+ }
+
+ @PostMapping(value="/run", consumes="application/json", produces="application/json")
+ public Object run(@RequestBody ActionRequest request) {
+ Object input = convertEvent(request.getValue());
+ Flux> output = apply(extract(input));
+ Object result = result(input, output);
+ try {
+ return "{\"result\":" + this.objectMapper.writeValueAsString(result) + "}";
+ }
+ catch (JsonProcessingException e) {
+ throw new IllegalStateException("failed to write JSON response", e);
+ }
+ }
+
+ private Object result(Object input, Flux> output) {
+ List