David Boreham
0b0394a940
Use absolute path for the data volume ( #749 )
...
Publish / Build and publish (push) Successful in 53s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m39s
Details
Smoke Test / Run basic test suite (push) Successful in 3m59s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Database Test / Run database hosting test on kind/k8s (push) Failing after 1m3s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m39s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/749
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-02-17 14:29:53 +00:00
David Boreham
37b9500483
Support non-tls ingress for kind ( #748 )
...
Publish / Build and publish (push) Successful in 3m2s
Details
Smoke Test / Run basic test suite (push) Successful in 4m16s
Details
Webapp Test / Run webapp test suite (push) Successful in 11m15s
Details
Lint Checks / Run linter (push) Failing after 4s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m34s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/748
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-02-17 01:54:30 +00:00
Thomas E Lackey
3c3e582939
Minor envsubst improvements. ( #746 )
...
Lint Checks / Run linter (push) Failing after 3s
Details
Publish / Build and publish (push) Successful in 50s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m32s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m39s
Details
Smoke Test / Run basic test suite (push) Successful in 3m49s
Details
Minor fixes to envsubst for webapps. Somewhat specially treated is `LACONIC_HOSTED_CONFIG_homepage` which can be used to replace the homepage in package.json. With react, this gets an extra `/` though, which we need to remove.
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/746
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-02-16 04:11:09 +00:00
David Boreham
26d265360d
Rename workflow file
Deploy Test / Run deploy test suite (push) Successful in 3m35s
Details
Publish / Build and publish (push) Successful in 52s
Details
Database Test / Run database hosting test on kind/k8s (push) Failing after 1m5s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m40s
Details
Smoke Test / Run basic test suite (push) Successful in 3m55s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
2024-02-15 07:39:04 -07:00
David Boreham
f81b78cfbc
Update .gitea/workflows/triggers/test-database
2024-02-15 14:35:56 +00:00
David Boreham
d9bb6b3588
Test Database Stack ( #737 )
...
Smoke Test / Run basic test suite (push) Successful in 3m54s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m40s
Details
Publish / Build and publish (push) Successful in 50s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m33s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/737
2024-02-15 05:26:29 +00:00
David Boreham
b59beb66eb
Add simple quick deploy script ( #743 )
...
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/743
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-02-15 05:00:51 +00:00
Thomas E Lackey
65d67dba10
Fix k8s and enable it by default on PRs ( #742 )
...
Publish / Build and publish (push) Successful in 52s
Details
Smoke Test / Run basic test suite (push) Successful in 3m45s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m32s
Details
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Failing after 1m2s
Details
Webapp Test / Run webapp test suite (push) Successful in 3m22s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/742
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-02-14 23:50:09 +00:00
Thomas E Lackey
b22c72e715
For k8s, use provisioner-managed volumes when an absolute host path is not specified. ( #741 )
...
In kind, when we bind-mount a host directory it is first mounted into the kind container at /mnt, then into the pod at the desired location.
We accidentally picked this up for full-blown k8s, and were creating volumes at /mnt. This changes the behavior for both kind and regular k8s so that bind mounts are only allowed if a fully-qualified path is specified. If no path is specified at all, a default storageClass is assumed to be present, and the volume managed by a provisioner.
Eg, for kind, the default provisioner is: https://github.com/rancher/local-path-provisioner
```
stack: test
deploy-to: k8s-kind
config:
test-variable-1: test-value-1
network:
ports:
test:
- '80'
volumes:
# this will be bind-mounted to a host-path
test-data-bind: /srv/data
# this will be managed by the k8s node
test-data-auto:
configmaps:
test-config: ./configmap/test-config
```
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/741
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-02-14 21:45:01 +00:00
Thomas E Lackey
c9444591f5
Fix default webapp port number. ( #740 )
...
Lint Checks / Run linter (push) Failing after 3s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m27s
Details
Smoke Test / Run basic test suite (push) Successful in 3m54s
Details
Publish / Build and publish (push) Successful in 51s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m41s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/740
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-02-09 01:20:41 +00:00
Thomas E Lackey
903f3b10e2
Add support for annotations and labels in spec. ( #739 )
...
```
stack: webapp-deployer-backend
deploy-to: k8s
annotations:
foo.bar.annot/{name}: baz
labels:
a.b.c/{name}.blah: "value"
```
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/739
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-02-09 00:11:07 +00:00
Thomas E Lackey
72ed2eb91a
Fix bad test in tag check. ( #738 )
...
Publish / Build and publish (push) Successful in 50s
Details
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Failing after 1m3s
Details
Webapp Test / Run webapp test suite (push) Successful in 3m2s
Details
Smoke Test / Run basic test suite (push) Successful in 3m48s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m30s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/738
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-02-08 20:38:41 +00:00
David Boreham
2104eb5f30
Merge pull request 'Add Mars stack' ( #725 ) from zach/mars into main
...
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/725
Reviewed-by: David Boreham <dboreham@noreply.git.vdb.to>
2024-02-08 20:30:47 +00:00
zramsay
afd6be3b13
Ping pub ( #663 )
...
for #170 , revives #190
uses https://github.com/LaconicNetwork/explorer/pull/1
Co-authored-by: zramsay <zach@bluecollarcoding.ca>
Co-authored-by: David Boreham <david@bozemanpass.com>
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/663
Co-authored-by: zramsay <zramsay@noreply.git.vdb.to>
Co-committed-by: zramsay <zramsay@noreply.git.vdb.to>
2024-02-08 20:13:12 +00:00
David Boreham
f914baa913
Merge branch 'main' into zach/mars
2024-02-08 19:52:49 +00:00
David Boreham
8be1e684e8
Process environment variables defined in compose files ( #736 )
...
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/736
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-02-08 19:41:57 +00:00
Thomas E Lackey
5d16251ce9
Merge pull request 'Add resource limit options to spec.' ( #735 ) from telackey/limits into main
...
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/735
Reviewed-by: David Boreham <dboreham@noreply.git.vdb.to>
2024-02-08 16:52:49 +00:00
Thomas E Lackey
3309782439
Refactor
2024-02-08 00:47:46 -06:00
Thomas E Lackey
4b3b3478e7
Switch to Docker-style limits
2024-02-08 00:43:41 -06:00
Thomas E Lackey
2a9955055c
debug
2024-02-07 16:56:35 -06:00
Thomas E Lackey
8964e1c0fe
Add resource limit options to spec.
2024-02-07 16:48:02 -06:00
Thomas E Lackey
d2ebb81d77
Tags for undeploy ( #734 )
...
Publish / Build and publish (push) Successful in 50s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m14s
Details
Smoke Test / Run basic test suite (push) Successful in 3m53s
Details
Lint Checks / Run linter (push) Failing after 4s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m42s
Details
```
--include-tags TEXT Only include requests with matching tags
(comma-separated).
--exclude-tags TEXT Exclude requests with matching tags (comma-
separated).
```
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/734
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-02-07 21:45:16 +00:00
Thomas E Lackey
4a981d8d2e
Fix repo URL ( #733 )
...
Needs a '/' (http) not ':' (ssh).
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/733
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-02-07 18:52:07 +00:00
Thomas E Lackey
88a0236ca9
Add the ability to filter deployment requests by tag. ( #730 )
...
Lint Checks / Run linter (push) Failing after 10s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m5s
Details
Smoke Test / Run basic test suite (push) Successful in 3m55s
Details
Publish / Build and publish (push) Successful in 53s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m37s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/730
2024-02-07 03:12:40 +00:00
Thomas E Lackey
937b983ec9
Update links from github.com to git.vdb.to ( #732 )
...
Update links and references to github.com to git.vdb.to.
Also enable the flake8 lint action in gitea.
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/732
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-02-06 22:42:44 +00:00
David Boreham
bfbcfb7904
Volume processing fixes ( #729 )
Publish / Build and publish (push) Successful in 55s
Details
Deploy Test / Run deploy test suite (push) Successful in 2m58s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m42s
Details
Smoke Test / Run basic test suite (push) Successful in 3m57s
Details
2024-02-06 12:32:10 -07:00
David Boreham
3d5ececba5
Remove duplicate plugin paths and resulting extraneous error message ( #728 )
2024-02-06 11:59:37 -07:00
David Boreham
6848fc33cf
Implement dry run support for k8s deploy ( #727 )
2024-02-06 07:07:56 -07:00
Thomas E Lackey
36bb068983
Add ConfigMap test. ( #726 )
...
Publish / Build and publish (push) Successful in 1m24s
Details
Deploy Test / Run deploy test suite (push) Successful in 2m52s
Details
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Failing after 1m3s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m40s
Details
Smoke Test / Run basic test suite (push) Successful in 4m24s
Details
* Add ConfigMap test.
* eof
* Minor tweak
* Trigger test
---------
Co-authored-by: David Boreham <david@bozemanpass.com>
2024-02-05 14:15:11 -06:00
David Boreham
25a2b70f2c
Fix command in mainnet-eth docs
Publish / Build and publish (push) Successful in 52s
Details
Deploy Test / Run deploy test suite (push) Successful in 2m52s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m42s
Details
Smoke Test / Run basic test suite (push) Successful in 3m42s
Details
2024-02-03 18:25:02 -07:00
Thomas E Lackey
2fcd416e29
Basic webapp deployer stack. ( #722 )
Webapp Test / Run webapp test suite (push) Successful in 2m35s
Details
Smoke Test / Run basic test suite (push) Successful in 3m46s
Details
Publish / Build and publish (push) Successful in 50s
Details
Deploy Test / Run deploy test suite (push) Successful in 2m56s
Details
2024-02-02 19:05:15 -07:00
Thomas E Lackey
6629017d6a
Support other webapp types (react, static). ( #721 )
...
* Support other webapp types (react, static).
2024-02-02 18:04:06 -06:00
David Boreham
1c30441000
Add schedule for k8s deploy test
Publish / Build and publish (push) Successful in 50s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m13s
Details
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Failing after 1m2s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m34s
Details
Smoke Test / Run basic test suite (push) Successful in 3m47s
Details
2024-02-01 07:40:20 -07:00
Thomas E Lackey
b398050787
Don't include volumes in spec if we don't have any. ( #720 )
Publish / Build and publish (push) Successful in 51s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m3s
Details
Webapp Test / Run webapp test suite (push) Successful in 3m6s
Details
Smoke Test / Run basic test suite (push) Successful in 4m56s
Details
2024-01-31 15:11:32 -06:00
Thomas E Lackey
12ec1bec43
Add ConfigMap support for k8s. ( #714 )
...
Publish / Build and publish (push) Successful in 50s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m7s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m38s
Details
Smoke Test / Run basic test suite (push) Successful in 3m45s
Details
* Minor fixes for deploying with k8s and podman.
* ConfigMap support
2024-01-30 23:09:48 -06:00
Thomas E Lackey
62af03077f
Add deployed/error status output to the state file. ( #719 )
...
* More status info
* Up default resource limits.
* Need ps
2024-01-30 22:13:45 -06:00
Zach
098567625a
Create README.md
2024-01-30 17:47:56 -05:00
Thomas E Lackey
428b05158e
Fix DnsRecord ownership check. ( #718 )
...
Smoke Test / Run basic test suite (push) Successful in 3m45s
Details
Publish / Build and publish (push) Successful in 58s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m3s
Details
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Failing after 1m3s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m44s
Details
* Fix DnsRecord ownership check.
* Var names
2024-01-30 13:31:59 -06:00
David Boreham
a750b645b9
Merge Ci test branch fixes ( #717 )
2024-01-30 11:18:08 -07:00
zramsay
23ee3e19b7
mars: add env vars to docker-compose
2024-01-29 22:44:55 +00:00
zramsay
2d764fc7d0
basic mars stack
2024-01-29 16:00:58 +00:00
David Boreham
b7f215d9bf
k8s test fixes ( #713 )
...
Publish / Build and publish (push) Successful in 51s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m2s
Details
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Failing after 1m3s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m34s
Details
Smoke Test / Run basic test suite (push) Successful in 3m48s
Details
* Add cgroup setup, increase test timeouts
* Trigger from test script or CI job changes too
2024-01-28 16:21:39 -07:00
David Boreham
eca52b10b7
Fix copy-paste error
Smoke Test / Run basic test suite (push) Successful in 4m6s
Details
Publish / Build and publish (push) Successful in 49s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m4s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m42s
Details
2024-01-25 11:46:50 -07:00
David Boreham
b9128841e4
Switch test back to stock runner
2024-01-25 11:42:07 -07:00
David Boreham
0a302ea555
Add a schedule for fixturenet-eth-plugeth-test
Deploy Test / Run deploy test suite (push) Successful in 3m2s
Details
Webapp Test / Run webapp test suite (push) Successful in 2m36s
Details
Smoke Test / Run basic test suite (push) Successful in 4m4s
Details
Fixturenet-Eth-Plugeth-Test / Run an Ethereum plugeth fixturenet test (push) Successful in 35m42s
Details
Publish / Build and publish (push) Successful in 58s
Details
2024-01-25 07:33:44 -07:00
David Boreham
aa0f60baa1
Trigger fixturenet-eth-plugeth-test run
2024-01-25 06:46:18 -07:00
David Boreham
cef73d8de2
Update fixturenet-laconicd-test schedule
Webapp Test / Run webapp test suite (push) Successful in 2m44s
Details
Smoke Test / Run basic test suite (push) Successful in 4m7s
Details
Publish / Build and publish (push) Successful in 55s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m13s
Details
Fixturenet-Laconicd-Test / Run an Laconicd fixturenet test (push) Failing after 3h13m6s
Details
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Has been cancelled
Details
2024-01-23 10:32:44 -07:00
David Boreham
7d0f2adb46
Enable scheduled test run ( #711 )
2024-01-23 09:42:24 -07:00
David Boreham
5fdee25dc1
update laconicd test ( #710 )
...
* Remove legacy docker config
* Trigger test run
2024-01-23 09:25:02 -07:00
Thomas E Lackey
554f05de87
Fix pip3 error ( #709 )
Publish / Build and publish (push) Successful in 1m0s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m9s
Details
Webapp Test / Run webapp test suite (push) Successful in 3m7s
Details
Smoke Test / Run basic test suite (push) Failing after 2m25s
Details
2024-01-22 21:06:15 -06:00