Skip to content

Commit 7bdd6f5

Browse files
authored
docker: move from acr to ghcr (#97)
* docker: move from acr to ghcr * earlier faasm
1 parent 1001aef commit 7bdd6f5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ running [Faasm](https://github.com/faasm/faasm) cluster.
88
To install `faasmctl` you need a working `pip` (virtual-)environment. Then:
99

1010
```bash
11-
pip install faasmctl==0.48.0
11+
pip install faasmctl==0.49.0
1212
```
1313

1414
## Usage

faasmctl/bin/gen_proto_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# able to run this file in standalone mode, as if the proto files are not
1313
# generated, some imports in `faasmctl` will fail
1414
GEN_PROTO_DIR = join(FAASMCTL_ROOT, "util", "gen_proto")
15-
FAASM_CLI_IMAGE = "faasm.azurecr.io/cli"
15+
FAASM_CLI_IMAGE = "ghcr.io/faasm/cli"
1616

1717
PROTO_FILES = [
1818
"faabric_pb2.py",

faasmctl/util/faasm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from os import environ
22

3-
FAASM_VERSION = "0.27.0"
3+
FAASM_VERSION = "0.29.0"
44

55

66
def get_version():
@@ -21,5 +21,5 @@ def get_version():
2121

2222

2323
# Define this constants after the above method to be able to use it
24-
FAASM_DOCKER_REGISTRY = "faasm.azurecr.io"
24+
FAASM_DOCKER_REGISTRY = "ghcr.io/faasm"
2525
FAASM_CLI_IMAGE = "{}/cli:{}".format(FAASM_DOCKER_REGISTRY, get_version())

faasmctl/util/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FAASMCTL_VERSION = "0.48.0"
1+
FAASMCTL_VERSION = "0.49.0"
22

33

44
def get_version():

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "faasmctl"
7-
version = "0.48.0"
7+
version = "0.49.0"
88
authors = [
99
{ name="Faasm Team", email="[email protected]" },
1010
]

0 commit comments

Comments
 (0)