Skip to content

nebhale/client-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

client-rust

Tests codecov

client-rust is a library to access Service Binding Specification for Kubernetes conformant Service Binding Workload Projections.

Example

use postgres::{Client, NoTls};

use service_bindings::binding::Binding;
use service_bindings::bindings;

fn main() {
    let b = bindings::from_service_binding_root();
    let c = bindings::filter(b, "postgresql");

    if c.len() != 1 {
        panic!("Incorrect number of PostgreSQL bindings: {}", c.len())
    }

    let u = c[0].get("url");
    let conn = match u {
        None => panic!("No URL in binding"),
        Some(u) => Client::connect(u, NoTls),
    };

    // ...
}

License

Apache License v2.0: see LICENSE for details.

About

Service Bindings for Kubernetes Rust Client

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages