Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ DB_DATABASE=k8s
DB_USERNAME=root
DB_PASSWORD=

META_REPO=https://github.com/kalkayan/k8s.elections.meta.git
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This repo does not exist any more.

META_REPO=https://github.com/elekto-dev/elekto.meta.test.git
ELECTION_DIR=elections
META_DEPLOYMENT=local
META_PATH=meta
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ DB_PASSWORD=password
Update the meta repository info

```bash
META_REPO=https://github.com/elekto-io/elekto.meta.test.git
META_REPO=https://github.com/elekto-dev/elekto.meta.test.git
META_DEPLOYMENT=local
META_PATH=meta
META_BRANCH=main
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
db:
image: postgres
image: postgres:17
restart: always
environment:
POSTGRES_DB: elekto
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Documentation

Primary elekto documentation is in [the Elekto Docs repo](https://github.com/elekto-io/docs) and not here. This directory contains some design documents from the early work on Elekto.
Primary elekto documentation is in [the Elekto Docs repo](https://github.com/elekto-dev/docs) and not here. This directory contains some design documents from the early work on Elekto.
2 changes: 1 addition & 1 deletion elekto/models/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def voters(self):

def showfields(self):
# FIXME: show_candidate_fields could be None (as is the case in the name_the_app example meta), leading to an
# error if showfields() is called. See: https://github.com/elekto-io/elekto/issues/98
# error if showfields() is called. See: https://github.com/elekto-dev/elekto/issues/98
return dict.fromkeys(self.election['show_candidate_fields'], '')

def candidates(self):
Expand Down
2 changes: 1 addition & 1 deletion installation/deployment/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
app: elekto
spec:
containers:
- image: ghcr.io/elekto-io/elekto:sha-83523b4
- image: ghcr.io/elekto-dev/elekto:sha-83523b4
imagePullPolicy: Always
name: elekto
ports:
Expand Down
10 changes: 5 additions & 5 deletions scripts/validate-bios/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Adapted from the [Kubernetes community's verify-steering-election-tool.go](https
No installation required! Run directly from GitHub:

```bash
go run github.com/elekto-io/elekto/scripts/validate-bios@latest <election-path>
go run github.com/elekto-dev/elekto/scripts/validate-bios@latest <election-path>
```

Or for local development, build from source:
Expand All @@ -35,7 +35,7 @@ This directory also includes a [sample Github workflow](go-test.yml), which can

```bash
# Run directly from GitHub (recommended)
go run github.com/elekto-io/elekto/scripts/validate-bios@latest /path/to/election
go run github.com/elekto-dev/elekto/scripts/validate-bios@latest /path/to/election

# Or for local development
cd scripts/validate-bios
Expand All @@ -50,18 +50,18 @@ cd scripts/validate-bios

```bash
# Enforce word limits
go run github.com/elekto-io/elekto/scripts/validate-bios@latest \
go run github.com/elekto-dev/elekto/scripts/validate-bios@latest \
--max-words=450 \
--recommended-words=300 \
/path/to/election

# Require specific markdown sections
go run github.com/elekto-io/elekto/scripts/validate-bios@latest \
go run github.com/elekto-dev/elekto/scripts/validate-bios@latest \
--required-sections="## About Me,## Platform,## Why I'm Running" \
/path/to/election

# Combine all options
go run github.com/elekto-io/elekto/scripts/validate-bios@latest \
go run github.com/elekto-dev/elekto/scripts/validate-bios@latest \
--max-words=450 \
--recommended-words=300 \
--required-sections="## About Me,## Platform" \
Expand Down
2 changes: 1 addition & 1 deletion scripts/validate-bios/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/elekto-io/elekto/scripts/validate-bios
module github.com/elekto-dev/elekto/scripts/validate-bios

go 1.22

Expand Down
Binary file added scripts/validate-bios/validate-bios
Binary file not shown.
2 changes: 1 addition & 1 deletion security.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ For information regarding the security and all other kinds of updates to this pr

* #elekto on [slack.cncf.io](https://slack.cncf.io)

Or simply follow our [releases feed](https://github.com/elekto-io/elekto/releases).
Or simply follow our [releases feed](https://github.com/elekto-dev/elekto/releases).

## Reporting a vulnerability

Expand Down
Loading