All Projects → googleapis → Nodejs Cloud Container

googleapis / Nodejs Cloud Container

Licence: apache-2.0
Deploy, manage, and scale containerized applications on Kubernetes, powered by Google Cloud.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Nodejs Cloud Container

Kraken
P2P Docker registry capable of distributing TBs of data in seconds
Stars: ✭ 4,849 (+12660.53%)
Mutual labels:  container
Docker Alpine Java
Oracle Java8 over AlpineLinux with glibc 2.29
Stars: ✭ 703 (+1750%)
Mutual labels:  container
Mydi
moved to https://github.com/cekta/di
Stars: ✭ 21 (-44.74%)
Mutual labels:  container
Liman
Self-hosted web application for monitoring docker.
Stars: ✭ 518 (+1263.16%)
Mutual labels:  container
Runtime
OCI (Open Containers Initiative) compatible runtime using Virtual Machines
Stars: ✭ 588 (+1447.37%)
Mutual labels:  container
Mariadb Container
MariaDB container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 19 (-50%)
Mutual labels:  container
Cc Oci Runtime
OCI (Open Containers Initiative) compatible runtime for Intel® Architecture
Stars: ✭ 418 (+1000%)
Mutual labels:  container
Go Containerregistry
Go library and CLIs for working with container registries
Stars: ✭ 974 (+2463.16%)
Mutual labels:  container
Robin Hood Hashing
Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20
Stars: ✭ 658 (+1631.58%)
Mutual labels:  container
Kubernetes Goat
Kubernetes Goat is "Vulnerable by Design" Kubernetes Cluster. Designed to be an intentionally vulnerable cluster environment to learn and practice Kubernetes security.
Stars: ✭ 868 (+2184.21%)
Mutual labels:  container
Nexclipper
Metrics Pipeline for interoperability and Enterprise Prometheus
Stars: ✭ 533 (+1302.63%)
Mutual labels:  container
Docker Php Nginx
Docker image with Nginx 1.18 & PHP-FPM 7.4 on Alpine Linux
Stars: ✭ 581 (+1428.95%)
Mutual labels:  container
Appserver
A multithreaded application server for PHP, written in PHP.
Stars: ✭ 930 (+2347.37%)
Mutual labels:  container
Seqbox
A single file container/archive that can be reconstructed even after total loss of file system structures
Stars: ✭ 480 (+1163.16%)
Mutual labels:  container
Aws Scalable Big Blue Button Example
Demonstration of how to deploy a scalable video conference solution based on Big Blue Button
Stars: ✭ 29 (-23.68%)
Mutual labels:  container
Nar
node.js application archive - create self-contained binary like executable applications that are ready to ship and run
Stars: ✭ 428 (+1026.32%)
Mutual labels:  container
Caddy Docker
Docker container for Caddy
Stars: ✭ 729 (+1818.42%)
Mutual labels:  container
Golang Docker Build Tutorial
A template project to create a minimal Docker image for a Go application
Stars: ✭ 36 (-5.26%)
Mutual labels:  container
Behatnoextension
This Behat extension makes it possible to extend Behat without having to write an extension yourself.
Stars: ✭ 34 (-10.53%)
Mutual labels:  container
Minecraft Forge
Docker images for Minecraft Forge
Stars: ✭ 11 (-71.05%)
Mutual labels:  container

Google Cloud Platform logo

Kubernetes Engine Cluster Manager API: Node.js Client

release level npm version codecov

Node.js idiomatic client for Kubernetes Engine cluster management.

Kubernetes Engine is used for building and managing container based applications, powered by the open source Kubernetes technology.

A comprehensive list of changes in each version may be found in the CHANGELOG.

Read more about the client libraries for Cloud APIs, including the older Google APIs Client Libraries, in Client Libraries Explained.

Table of contents:

Quickstart

Before you begin

  1. Select or create a Cloud Platform project.
  2. Enable billing for your project.
  3. Enable the Kubernetes Engine Cluster Manager API API.
  4. Set up authentication with a service account so you can access the API from your local workstation.

Installing the client library

npm install @google-cloud/container

Using the client library

const container = require('@google-cloud/container');

// Create the Cluster Manager Client
const client = new container.v1.ClusterManagerClient();

async function quickstart() {
  const zone = 'us-central1-a';
  const projectId = await client.getProjectId();
  const request = {
    projectId: projectId,
    zone: zone,
  };

  const [response] = await client.listClusters(request);
  console.log('Clusters:');
  console.log(response);
}
quickstart();

Relationship to Kubernetes

@google-cloud/container provides a high level API for creating and managing Google Kubernetes Engine clusters on Google Cloud.

To run commands against the clusters created, you will need to use the Kubernetes API (and the associated kubectl command-line interface).

Samples

Samples are in the samples/ directory. Each sample's README.md has instructions for running its sample.

Sample Source Code Try it
Quickstart source code Open in Cloud Shell

The Kubernetes Engine Cluster Manager API Node.js Client API Reference documentation also contains samples.

Supported Node.js Versions

Our client libraries follow the Node.js release schedule. Libraries are compatible with all current active and maintenance versions of Node.js.

Client libraries targeting some end-of-life versions of Node.js are available, and can be installed via npm dist-tags. The dist-tags follow the naming convention legacy-(version).

Legacy Node.js versions are supported as a best effort:

  • Legacy versions will not be tested in continuous integration.
  • Some security patches may not be able to be backported.
  • Dependencies will not be kept up-to-date, and features will not be backported.

Legacy tags available

  • legacy-8: install client libraries from this dist-tag for versions compatible with Node.js 8.

Versioning

This library follows Semantic Versioning.

This library is considered to be General Availability (GA). This means it is stable; the code surface will not change in backwards-incompatible ways unless absolutely necessary (e.g. because of critical security issues) or with an extensive deprecation period. Issues and requests against GA libraries are addressed with the highest priority.

More Information: Google Cloud Platform Launch Stages

Contributing

Contributions welcome! See the Contributing Guide.

Please note that this README.md, the samples/README.md, and a variety of configuration files in this repository (including .nycrc and tsconfig.json) are generated from a central template. To edit one of these files, make an edit to its template in this directory.

License

Apache Version 2.0

See LICENSE

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].