Skip to content

Commit

Permalink
feat: Update Istio to 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa committed Aug 8, 2021
1 parent e9d8c4d commit 4a2b7e9
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Dapr is a portable, event-driven, runtime for building distributed applications
](https://javadoc.io/doc/com.marcnuri.yakc.apis/istio)

[Retrofit](https://square.github.io/retrofit/) API client Java interfaces for
[Istio](https://istio.io/) (1.7 - 1.8).
[Istio](https://istio.io/) (1.7 - 1.9.2).

Istio is a service-mesh for distributed applications. Istio leverages the required features to
run a successful and efficient distributed microservice architecture by providing a uniform way
Expand All @@ -178,7 +178,7 @@ to secure, monitor and connect microservices.
](https://javadoc.io/doc/com.marcnuri.yakc.apis/knative)

[Retrofit](https://square.github.io/retrofit/) API client Java interfaces for
[Knative](https://knative.dev/) (0.19.0 - 0.20.0).
[Knative](https://knative.dev/) (0.19.0 - 0.22.0).

Knative is a Kubernetes-based platform to manage and deploy serverless workloads.

Expand Down
3 changes: 2 additions & 1 deletion apis/istio/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ def templatesDirs = new File(rootProject.projectDir, "schema/templates")
def schemaDir = new File(projectDir, "schema")
def availableSchemaNames = Arrays.asList(
"istio-1.7.4.json",
"istio-1.8.0.json"
"istio-1.8.0.json",
"istio-1.9.2.json"
)
def availableSchemas = availableSchemaNames.stream()
.map { s -> new File(schemaDir, s) }
Expand Down
1 change: 1 addition & 0 deletions apis/istio/schema/istio-1.9.2.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class VirtualServiceSpecRetries implements Model {
private Number attempts;

/**
* Timeout per retry attempt for a given request.
* Timeout per attempt for a given request, including the initial call and any retries.
*/
@JsonProperty("perTryTimeout")
private String perTryTimeout;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import lombok.ToString;

/**
* health is determined by how the command that is executed exited.
* Health is determined by how the command that is executed exited.
*/
@SuppressWarnings({"squid:S1192", "WeakerAccess", "unused"})
@Builder(toBuilder = true, builderClassName = "Builder")
Expand All @@ -39,7 +39,7 @@ public class WorkloadGroupSpecProbeExec implements Model {


/**
* command to run.
* Command to run.
*/
@JsonProperty("command")
@Singular(value = "addToCommand", ignoreNullCollections = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class WorkloadGroupSpecProbeHttpGet implements Model {
private String host;

/**
* headers the proxy will pass on to make the request.
* Headers the proxy will pass on to make the request.
*/
@JsonProperty("httpHeaders")
@Singular(value = "addToHttpHeaders", ignoreNullCollections = true)
Expand All @@ -58,7 +58,7 @@ public class WorkloadGroupSpecProbeHttpGet implements Model {
private String path;

/**
* port on which the endpoint lives.
* Port on which the endpoint lives.
*/
@JsonProperty("port")
private Number port;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import lombok.ToString;

/**
* health is determined by if the proxy is able to connect.
* Health is determined by if the proxy is able to connect.
*/
@SuppressWarnings({"squid:S1192", "WeakerAccess", "unused"})
@Builder(toBuilder = true, builderClassName = "Builder")
Expand Down

0 comments on commit 4a2b7e9

Please sign in to comment.