Skip to content

Commit

Permalink
Update references to InQuicker namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmycuadra committed Mar 3, 2018
1 parent 0f0ca96 commit e2eae25
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion LICENSE
@@ -1,4 +1,5 @@
Copyright (c) 2016 InQuicker, LLC
Copyright (c) 2016-2017 InQuicker, LLC
Copyright (c) 2018 Jimmy Cuadra

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -23,7 +23,7 @@ target/x86_64-unknown-linux-musl/release/ktmpl:

.PHONY: docker-build
docker-build:
docker build -t inquicker/ktmpl -t inquicker/ktmpl:$(TAG) .
docker build -t jimmycuadra/ktmpl -t jimmycuadra/ktmpl:$(TAG) .

dist: clean dist/sha256sums.txt.sig docker-build

Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -116,18 +116,18 @@ cargo install ktmpl

### Precompiled binary

[Releases](https://github.com/InQuicker/ktmpl/releases)
[Releases](https://github.com/jimmycuadra/ktmpl/releases)

### Docker

```
docker pull inquicker/ktmpl
docker pull jimmycuadra/ktmpl
```

### Building from source

1. Install the appropriate version of [Rust](https://www.rust-lang.org/) for your system.
2. Run `git clone git@github.com:InQuicker/ktmpl.git`.
2. Run `git clone git@github.com:jimmycuadra/ktmpl.git`.
3. Inside the freshly cloned repository, run `cargo install --path .`.

Make sure Cargo's bin directory is added to your PATH environment variable.
Expand All @@ -138,7 +138,7 @@ To package the current release for distribution, update `TAG` in the Makefile an
Release artifacts will be written to the `dist` directory.
Your GPG secret key will be required to sign `sha256sums.txt`.

Docker images for `inquicker/ktmpl` and `inquicker/ktmpl:$TAG` will be created, but you must push them manually.
Docker images for `jimmycuadra/ktmpl` and `jimmycuadra/ktmpl:$TAG` will be created, but you must push them manually.
`cargo publish` must be run manually to release to crates.io.

## Legal
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
@@ -1,7 +1,7 @@
//! the [Templates + Parameterization proposal](https://github.com/kubernetes/kubernetes/blob/master/docs/proposals/templates.md).
//!
//! The crate ships with a command line utility and a library for programmatically processing
//! manifest templates. See the [README](https://github.com/InQuicker/ktmpl) for documentation for
//! manifest templates. See the [README](https://github.com/jimmycuadra/ktmpl) for documentation for
//! the command line utility, and a general overview of the Kubernetes template system.
//!
//! Here is a simple example of using the library:
Expand Down

0 comments on commit e2eae25

Please sign in to comment.