busy-teacher-96897
08/05/2022, 11:16 PMbusy-teacher-96897
08/05/2022, 11:18 PMbroad-dream-81849
08/11/2022, 7:36 PM--skip-ssl-verification
flag?busy-teacher-96897
08/12/2022, 2:08 AMcuddly-holiday-9089
08/29/2022, 5:34 AMepinio service bind
but this assumes the application is already created. The -b
flag of the push
command is there to bind existing configurations but the service configurations are only created the first time the service is bound to an application. So there is a chicken-egg problem here. The solution I think is:
• epinio service create...
• epinio app create...
(beware, this is "create" not "push")
• epinio service bind
(now the application exists, so this is possible)
• epinio push
let me give it a try myself to save some back an forth between timezones if this doesn't work.broad-dream-81849
09/13/2022, 8:59 PMclever-analyst-23771
09/15/2022, 6:23 PMcuddly-holiday-9089
09/21/2022, 6:41 AM#!/bin/bash
# Checkout a branch
git checkout 1571-re-dex-spike
# Sync git submodule
# NOTE: This will cleanup dangling files inside the submodule too (because of `git clean -dffx`).
# Adapt this command if necessary
git submodule sync --recursive && git submodule update --init --recursive && git submodule foreach --recursive "git co . && git reset --hard && git clean -dffx"
# Prepare a dev cluster
make acceptance-cluster-setup
# Configure KUBECONFIG to talk to the dev cluster
export KUBECONFIG=$PWD/tmp/acceptance-kubeconfig
# Install cert-manager
make install-cert-manager
# Install Epinio from the checked out commit
make prepare_environmnet_k3d
# You should now be able to use Epinio
cuddly-holiday-9089
09/21/2022, 6:55 AMcommunity
repository in Epinio where people can contribute their scripts or other tooling around Epinio. We can start with a README that explains what's in each directory and each directory (tool/script/whatever) can have its own README. If a tool becomes popular it could be extracted to its own repo but for now, keeping them in one place should be a good start. What do you all think? Fred already has some useful Makefiles and scripts to help deploy Epinio in AWS.cuddly-holiday-9089
10/06/2022, 6:30 AMbusy-teacher-96897
10/06/2022, 6:32 AMbroad-dream-81849
10/06/2022, 7:04 AMconfig.yaml
inside the dex-config
secret in the epinio
namespace, adding a Github connector:
connectors:
- type: github
id: github
name: GitHub
config:
clientID: my-client-id
clientSecret: my-secret
redirectURI: "<https://auth.myepiniocluster.com/callback>"
Then you can restart Dex to get the configuration, and you are good to go!
You can probably tweak also the helm-chart values to push the dex configuration instead of manually update them, but I haven't tried it.cuddly-holiday-9089
10/06/2022, 9:04 AM1.3.0
is now released: https://github.com/epinio/epinio/releases/tag/v1.3.0 including external authentication with dex, self-updating cli and other improvements and fixes. Everybody's feedback is welcome!careful-piano-35019
10/06/2022, 1:22 PMhttps://youtu.be/2BPEUNis0v0?t=2300▾
busy-teacher-96897
10/06/2022, 5:37 PMcareful-piano-35019
10/18/2022, 9:02 AMcareful-piano-35019
10/27/2022, 5:28 PMripe-art-46642
11/04/2022, 3:31 PMbusy-teacher-96897
11/04/2022, 4:15 PMrich-island-96532
11/09/2022, 5:24 PMfreezing-holiday-13112
11/29/2022, 4:03 PMadamant-scooter-39283
11/30/2022, 4:09 AMhelm install epinio --create-namespace --namespace epinio epinio/epinio --set global.domain=<http://192.168.49.2.sslip.io|192.168.49.2.sslip.io>
After doing a minikube service -n epinio epinio-ui --url
, I’m able to access the Epinio UI via <http://127.0.0.1:63777>
but the admin/password
login is not working (see screenshot). Anyone know why? 🤔
Thanks in advancefreezing-holiday-13112
12/02/2022, 5:10 PMfreezing-holiday-13112
12/02/2022, 5:11 PMfreezing-holiday-13112
01/04/2023, 7:29 PMfreezing-holiday-13112
01/04/2023, 7:30 PMbroad-dream-81849
01/04/2023, 8:54 PMTRACE_LEVEL
env var to get some logs? In your shell for the cli, and in the epinio deployment for the serverfreezing-holiday-13112
01/12/2023, 8:58 PMfreezing-holiday-13112
01/13/2023, 5:22 PMrough-area-94234
02/05/2023, 10:18 AMrough-area-94234
02/05/2023, 10:18 AMhigh-morning-12231
02/05/2023, 5:41 PMbroad-dream-81849
02/06/2023, 9:51 AMdev-namespace
and a test-namespace
, and setting the app routes to something like <http://dev.myapp.mydomain.com|dev.myapp.mydomain.com>
and <http://test.myapp.mydomain.com|test.myapp.mydomain.com>
. Maybe it should give you enough isolation 🙂rough-area-94234
02/07/2023, 11:55 PM