Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
docs(v1): fix relative URLs in documentation (#119)
Browse files Browse the repository at this point in the history
* chore: release 1.0.1 (#101)

0de71bc
commit 0de71bc
Author: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Date:   Tue Apr 7 18:10:21 2020 +0000

    chore: release 1.0.1 (#101)

    🤖 I have created a release \*beep\* \*boop\*
    ---
    ### [1.0.1](https://www.github.com/googleapis/java-container/compare/v1.0.0...v1.0.1) (2020-04-07)

    ### Dependencies

    * update core dependencies ([#99](https://www.github.com/googleapis/java-container/issues/99)) ([2b4af5b](https://www.github.com/googleapis/java-container/commit/2b4af5b6b9204cede271095d5e677d432ef6c9fc))
    * update dependency com.google.api:api-common to v1.9.0 ([#106](https://www.github.com/googleapis/java-container/issues/106)) ([3953dd4](https://www.github.com/googleapis/java-container/commit/3953dd4d13236219c45b48bd3ed2f6760c73273d))
    * update dependency com.google.cloud:google-cloud-core to v1.93.1 ([#80](https://www.github.com/googleapis/java-container/issues/80)) ([00fee0a](https://www.github.com/googleapis/java-container/commit/00fee0aca2e6cc5c23fa96be968daa759bd46631))
    * update dependency com.google.cloud:google-cloud-core to v1.93.4 ([#113](https://www.github.com/googleapis/java-container/issues/113)) ([086d78e](https://www.github.com/googleapis/java-container/commit/086d78e62879de5991af8789f3597b1754918b6a))
    * update dependency org.threeten:threetenbp to v1.4.2 ([#95](https://www.github.com/googleapis/java-container/issues/95)) ([e5746bb](https://www.github.com/googleapis/java-container/commit/e5746bb4194716f2e6229f8c1bf36f64d8fd8953))
    * update dependency org.threeten:threetenbp to v1.4.3 ([#111](https://www.github.com/googleapis/java-container/issues/111)) ([1f34ca1](https://www.github.com/googleapis/java-container/commit/1f34ca1b5ec5f31728c0537ef91106678efb8dbd))
    ---

    This PR was generated with [Release Please](https://github.com/googleapis/release-please).

* chore: set Ruby namespace in proto options

googleapis/googleapis@27daba5
commit 27daba50281357b676e1ba882422ebeab4ce4f92
Author: Google APIs <noreply@google.com>
Date:   Tue Apr 7 13:23:55 2020 -0700

    chore: set Ruby namespace in proto options

    PiperOrigin-RevId: 305327500

* docs: change relative URLs to absolute URLs to fix broken links.

googleapis/googleapis@d398d68
commit d398d687aad9eab4c6ceee9cd5e012fa61f7e28c
Author: Google APIs <noreply@google.com>
Date:   Wed Apr 8 09:48:52 2020 -0700

    docs: change relative URLs to absolute URLs to fix broken links.

    PiperOrigin-RevId: 305496764

* build(java): fix retry_with_backoff when -e option set (#475)

googleapis/synthtool@bd69a2a
commit bd69a2aa7b70875f3c988e269706b22fefbef40e
Author: Jeff Ching <chingor@google.com>
Date:   Wed Apr 8 14:01:08 2020 -0700

    build(java): fix retry_with_backoff when -e option set (#475)

* build(java): fix nightly integration test config to run integrations (#465)

googleapis/synthtool@c7e0e51
commit c7e0e517d7f46f77bebd27da2e5afcaa6eee7e25
Author: Jeff Ching <chingor@google.com>
Date:   Wed Apr 8 14:06:04 2020 -0700

    build(java): fix nightly integration test config to run integrations (#465)

    This was only running the units.

* chore(java): release-please only updates non maven versions in README (#476)

googleapis/synthtool@7f8e62a
commit 7f8e62aa3edd225f76347a16f92e400661fdfb52
Author: Jeff Ching <chingor@google.com>
Date:   Wed Apr 8 14:14:25 2020 -0700

    chore(java): release-please only updates non maven versions in README (#476)

    Prevent release-please and synthtool from fighting over the released library version. Synthtool updates the install snippets from the samples pom.xml files so the bots fight if they are temporarily out of sync after a release.
  • Loading branch information
yoshi-automation committed Apr 8, 2020
1 parent bfed70d commit 4951555
Show file tree
Hide file tree
Showing 84 changed files with 667 additions and 629 deletions.
14 changes: 12 additions & 2 deletions .kokoro/common.sh
Expand Up @@ -13,18 +13,28 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# set -eo pipefail

function retry_with_backoff {
attempts_left=$1
sleep_seconds=$2
shift 2
command=$@


# store current flag state
flags=$-

# allow a failures to continue
set +e
echo "${command}"
${command}
exit_code=$?

# restore "e" flag
if [[ ${flags} =~ e ]]
then set -e
else set +e
fi

if [[ $exit_code == 0 ]]
then
return 0
Expand Down
15 changes: 15 additions & 0 deletions .kokoro/nightly/integration.cfg
Expand Up @@ -6,11 +6,26 @@ env_vars: {
value: "gcr.io/cloud-devrel-kokoro-resources/java8"
}

env_vars: {
key: "JOB_TYPE"
value: "integration"
}

env_vars: {
key: "GCLOUD_PROJECT"
value: "gcloud-devel"
}

env_vars: {
key: "ENABLE_BUILD_COP"
value: "true"
}

env_vars: {
key: "GOOGLE_APPLICATION_CREDENTIALS"
value: "keystore/73713_java_it_service_account"
}

before_action {
fetch_keystore {
keystore_resource {
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -32,19 +32,19 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file

```

[//]: # ({x-version-update-start:google-cloud-container:released})

If you are using Maven without BOM, add this to your dependencies:

```xml
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-container</artifactId>
<version>1.0.1</version>
<version>1.0.0</version>
</dependency>

```

[//]: # ({x-version-update-start:google-cloud-container:released})

If you are using Gradle, add this to your dependencies
```Groovy
compile 'com.google.cloud:google-cloud-container:1.0.1'
Expand Down

Large diffs are not rendered by default.

Expand Up @@ -1461,7 +1461,7 @@ public void getCluster(
* Creates a cluster, consisting of the specified number and type of Google
* Compute Engine instances.
* By default, the cluster is created in the project's
* [default network](/compute/docs/networks-and-firewalls#networks).
* [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks).
* One firewall is added for the cluster. After cluster creation,
* the Kubelet creates routes for each node to allow the containers
* on that node to communicate with all other instances in the
Expand Down Expand Up @@ -2106,7 +2106,7 @@ public void getCluster(
* Creates a cluster, consisting of the specified number and type of Google
* Compute Engine instances.
* By default, the cluster is created in the project's
* [default network](/compute/docs/networks-and-firewalls#networks).
* [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks).
* One firewall is added for the cluster. After cluster creation,
* the Kubelet creates routes for each node to allow the containers
* on that node to communicate with all other instances in the
Expand Down Expand Up @@ -2634,7 +2634,7 @@ public com.google.container.v1.Cluster getCluster(
* Creates a cluster, consisting of the specified number and type of Google
* Compute Engine instances.
* By default, the cluster is created in the project's
* [default network](/compute/docs/networks-and-firewalls#networks).
* [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks).
* One firewall is added for the cluster. After cluster creation,
* the Kubelet creates routes for each node to allow the containers
* on that node to communicate with all other instances in the
Expand Down Expand Up @@ -3057,7 +3057,7 @@ protected ClusterManagerFutureStub build(
* Creates a cluster, consisting of the specified number and type of Google
* Compute Engine instances.
* By default, the cluster is created in the project's
* [default network](/compute/docs/networks-and-firewalls#networks).
* [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks).
* One firewall is added for the cluster. After cluster creation,
* the Kubelet creates routes for each node to allow the containers
* on that node to communicate with all other instances in the
Expand Down
Expand Up @@ -140,7 +140,7 @@ public long getAcceleratorCount() {
*
* <pre>
* The accelerator type resource name. List of supported accelerators
* [here](/compute/docs/gpus)
* [here](https://cloud.google.com/compute/docs/gpus)
* </pre>
*
* <code>string accelerator_type = 2;</code>
Expand All @@ -163,7 +163,7 @@ public java.lang.String getAcceleratorType() {
*
* <pre>
* The accelerator type resource name. List of supported accelerators
* [here](/compute/docs/gpus)
* [here](https://cloud.google.com/compute/docs/gpus)
* </pre>
*
* <code>string accelerator_type = 2;</code>
Expand Down Expand Up @@ -570,7 +570,7 @@ public Builder clearAcceleratorCount() {
*
* <pre>
* The accelerator type resource name. List of supported accelerators
* [here](/compute/docs/gpus)
* [here](https://cloud.google.com/compute/docs/gpus)
* </pre>
*
* <code>string accelerator_type = 2;</code>
Expand All @@ -593,7 +593,7 @@ public java.lang.String getAcceleratorType() {
*
* <pre>
* The accelerator type resource name. List of supported accelerators
* [here](/compute/docs/gpus)
* [here](https://cloud.google.com/compute/docs/gpus)
* </pre>
*
* <code>string accelerator_type = 2;</code>
Expand All @@ -616,7 +616,7 @@ public com.google.protobuf.ByteString getAcceleratorTypeBytes() {
*
* <pre>
* The accelerator type resource name. List of supported accelerators
* [here](/compute/docs/gpus)
* [here](https://cloud.google.com/compute/docs/gpus)
* </pre>
*
* <code>string accelerator_type = 2;</code>
Expand All @@ -638,7 +638,7 @@ public Builder setAcceleratorType(java.lang.String value) {
*
* <pre>
* The accelerator type resource name. List of supported accelerators
* [here](/compute/docs/gpus)
* [here](https://cloud.google.com/compute/docs/gpus)
* </pre>
*
* <code>string accelerator_type = 2;</code>
Expand All @@ -656,7 +656,7 @@ public Builder clearAcceleratorType() {
*
* <pre>
* The accelerator type resource name. List of supported accelerators
* [here](/compute/docs/gpus)
* [here](https://cloud.google.com/compute/docs/gpus)
* </pre>
*
* <code>string accelerator_type = 2;</code>
Expand Down
Expand Up @@ -41,7 +41,7 @@ public interface AcceleratorConfigOrBuilder
*
* <pre>
* The accelerator type resource name. List of supported accelerators
* [here](/compute/docs/gpus)
* [here](https://cloud.google.com/compute/docs/gpus)
* </pre>
*
* <code>string accelerator_type = 2;</code>
Expand All @@ -54,7 +54,7 @@ public interface AcceleratorConfigOrBuilder
*
* <pre>
* The accelerator type resource name. List of supported accelerators
* [here](/compute/docs/gpus)
* [here](https://cloud.google.com/compute/docs/gpus)
* </pre>
*
* <code>string accelerator_type = 2;</code>
Expand Down
Expand Up @@ -195,7 +195,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() {
*
* <pre>
* Deprecated. The name of the Google Compute Engine
* [zone](/compute/docs/zones#available) in which the operation resides.
* [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
* This field has been deprecated and replaced by the name field.
* </pre>
*
Expand All @@ -220,7 +220,7 @@ public java.lang.String getZone() {
*
* <pre>
* Deprecated. The name of the Google Compute Engine
* [zone](/compute/docs/zones#available) in which the operation resides.
* [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
* This field has been deprecated and replaced by the name field.
* </pre>
*
Expand Down Expand Up @@ -832,7 +832,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) {
*
* <pre>
* Deprecated. The name of the Google Compute Engine
* [zone](/compute/docs/zones#available) in which the operation resides.
* [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
* This field has been deprecated and replaced by the name field.
* </pre>
*
Expand All @@ -857,7 +857,7 @@ public java.lang.String getZone() {
*
* <pre>
* Deprecated. The name of the Google Compute Engine
* [zone](/compute/docs/zones#available) in which the operation resides.
* [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
* This field has been deprecated and replaced by the name field.
* </pre>
*
Expand All @@ -882,7 +882,7 @@ public com.google.protobuf.ByteString getZoneBytes() {
*
* <pre>
* Deprecated. The name of the Google Compute Engine
* [zone](/compute/docs/zones#available) in which the operation resides.
* [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
* This field has been deprecated and replaced by the name field.
* </pre>
*
Expand All @@ -906,7 +906,7 @@ public Builder setZone(java.lang.String value) {
*
* <pre>
* Deprecated. The name of the Google Compute Engine
* [zone](/compute/docs/zones#available) in which the operation resides.
* [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
* This field has been deprecated and replaced by the name field.
* </pre>
*
Expand All @@ -926,7 +926,7 @@ public Builder clearZone() {
*
* <pre>
* Deprecated. The name of the Google Compute Engine
* [zone](/compute/docs/zones#available) in which the operation resides.
* [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
* This field has been deprecated and replaced by the name field.
* </pre>
*
Expand Down
Expand Up @@ -59,7 +59,7 @@ public interface CancelOperationRequestOrBuilder
*
* <pre>
* Deprecated. The name of the Google Compute Engine
* [zone](/compute/docs/zones#available) in which the operation resides.
* [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
* This field has been deprecated and replaced by the name field.
* </pre>
*
Expand All @@ -74,7 +74,7 @@ public interface CancelOperationRequestOrBuilder
*
* <pre>
* Deprecated. The name of the Google Compute Engine
* [zone](/compute/docs/zones#available) in which the operation resides.
* [zone](https://cloud.google.com/compute/docs/zones#available) in which the operation resides.
* This field has been deprecated and replaced by the name field.
* </pre>
*
Expand Down

0 comments on commit 4951555

Please sign in to comment.