- Thanks for the demonstration, David
- All right - so what are the next steps forward for the developers -
- The cluster now corresponds to Noggin/IPA for authentication/authorization - so you can login to the cluster via your Fedora Accounts.
- The infrastructure and release engineering team will work on migrating the existing applications from the older OCP cluster to the newer 4.x version.
- One can help us with the existing running applications, they can help us -
- By reworking their OpenShift applications playbook to fall in line with the new cluster and make a PR against our Fedora Infrastructure's Ansible repositories [1]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| import click | |
| import uvicorn | |
| from ..configuration import config, read_configuration | |
| from ..version import __version__ | |
| DEFAULT_CONFIG_FILE = "/etc/duffy.yaml" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ... | |
| # Copyright © 2021 Nils Philippsen <[email protected]> | |
| # Licensed under the MIT license as published by the Open Source Initiative | |
| # Auto-activate Python virtualenvwrapper environment if shell is started within a project directory | |
| _old_nullglob=$(shopt -p nullglob) | |
| shopt -s nullglob | |
| unset _projdirs_venvs | |
| declare -A _projdirs_venvs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Metadata: | |
| Author: "Akashdeep Dhar" | |
| Email: "[email protected]" | |
| Datetime: "17:18, 05 Nov 2021" | |
| Timezone: "Asia/Kolkata" | |
| Components: | |
| CentralProcessingUnit: | |
| Name: "AMD Ryzen 7 5800X" | |
| Quantity: 1 | |
| TDP: 105 |
Host:
irc.libera.chat:6697
List:
#fedora-aaa
#fedora-admin
#fedora-apps
git clone https://github.com/zebpay/zeb_py.gitcd zeb_pyvirtualenv venvsource venv/bin/activatepython3 setup.py installpip3 install requests pycrypto- Add
from zebpay_client import zebpay_rest_clientin your module to use functions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM centos:latest | |
| LABEL maintainer "Akashdeep Dhar <[email protected]>" | |
| RUN ["dnf", "install", "java", "wget", "-y"] | |
| RUN ["wget", "https://github.com/gitblit/gitblit/releases/download/v1.9.1/gitblit-1.9.1.tar.gz"] | |
| RUN ["tar", "-xvzf", "gitblit-1.9.1.tar.gz"] | |
| RUN ["rm", "gitblit-1.9.1.tar.gz"] | |
| WORKDIR /gitblit-1.9.1 | |
| EXPOSE 8080 8443 9418 29418 | |
| ENTRYPOINT ["sh", "/gitblit-1.9.1/gitblit.sh"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM docker.io/library/node:latest | |
| LABEL maintainer "Akashdeep Dhar <[email protected]>" | |
| WORKDIR /data | |
| RUN git clone --branch master https://github.com/ether/etherpad-lite.git . | |
| EXPOSE 9001 | |
| ENTRYPOINT ["sh", "/data/src/bin/run.sh", "--root"] |






